Skip to content

Commit 689ca6d

Browse files
author
Paul Stockley
committed
Version 1.0.0
1 parent b256495 commit 689ca6d

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

DOCUMENTATION.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -525,11 +525,11 @@ by JsInterop libraries:</p>
525525

526526
| Interface | Description |
527527
| :--- | :--- |
528-
| JsProcedure | A callback that takes no arguments and returns nothing
528+
| JsRunnable | A callback that takes no arguments and returns nothing
529529
| JsConsumer&lt;A> | A callback that accepts one argument of type A and has no return value
530530
| JsBiConsumer&lt;A1, A2> | A callback that accepts two arguments of type A1 and A2 and has no return value
531-
| JsFunction&lt;R> | A function that has no arguments and returns R
532-
| JsUnaryFunction&lt;R, A> | A function that has one argument A and returns R
531+
| JsSupplier&lt;R> | A function that has no arguments and returns R
532+
| JsFunction&lt;R, A> | A function that has one argument A and returns R
533533
| JsBiFunction&lt;R, A1, A2> | A function that has two arguments A1, A2 and returns R
534534
| JsPredicate | A function that tests some condition and returns true or false
535535

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ You can download the latest release .jar from Maven Central using the following
1111

1212
* **groupId**&nbsp;&nbsp;&nbsp; com.github.gwtreact
1313
* **artifactId**&nbsp;&nbsp;gwt-interop-utils
14-
* **version**&nbsp;&nbsp;&nbsp; 0.4.0
14+
* **version**&nbsp;&nbsp;&nbsp; 1.0.0
1515

1616
## Roadmap
1717

@@ -25,6 +25,7 @@ Once the project is stable we will be happy to except pull requests. If you find
2525

2626
| Date | Version | Description |
2727
| :--- | :--- | :--- |
28+
| 5/02/2018 | 1.0.0 | Update to GWT 2.8.2 and rebase on top of com.google.jsinterop.base As a result, redundant methods have been removed. |
2829
| 4/29/2017 | 0.4.0 | Update to GWT 2.8.1 |
2930
| 3/04/2017 | 0.3.0 | Clean up Eclipse compiler warnings |
3031
| 10/27/2016 | 0.2.0 | Update to GWT 2.8 |

build.gradle

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ apply plugin: 'signing'
66

77
group = 'com.github.gwtreact'
88
archivesBaseName = 'gwt-interop-utils'
9-
version = "0.4.0"
9+
version = "1.0.0"
1010

1111
buildscript {
1212
repositories {
@@ -46,14 +46,15 @@ compileJava{
4646
}
4747

4848
gwt {
49-
gwtVersion "2.8.1"
49+
gwtVersion "2.8.2"
5050

5151
eclipse.addGwtContainer = false;
5252

5353
minHeapSize = "512M";
5454
maxHeapSize = "4096M";
5555

5656
dependencies {
57+
gwt group: "com.google.jsinterop", name: "base", version: "1.0.0-RC1"
5758
}
5859
}
5960

0 commit comments

Comments
 (0)