Skip to content

Commit 6bf9d3a

Browse files
author
Paul Stockley
committed
Refactored to use more future proof ES6 styled stateful components and added Preact support
1 parent ef5d6b2 commit 6bf9d3a

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ GWT Java bindings for React
33

44
##Introduction
55

6-
gwt-react provides Java [GWT](http://www.gwtproject.org/) bindings for [React v15.3.2](https://facebook.github.io/react/) based on the new JsInterop capabilities introduced in GWT 2.8
6+
<p>gwt-react provides Java [GWT](http://www.gwtproject.org/) bindings for [React v15.4.2](https://facebook.github.io/react/) based on the new JsInterop capabilities introduced in GWT 2.8</p>
7+
<p>In addition, you can now use the same bindings with [Preact v7.2.0](https://github.com/developit/preact)</p>
78

89
##Prerequisites
910

@@ -22,7 +23,7 @@ You can download the latest release .jar from Maven Central using the following
2223

2324
* **groupId**&nbsp;&nbsp;&nbsp; com.github.gwtreact
2425
* **artifactId**&nbsp;&nbsp;gwt-react
25-
* **version**&nbsp;&nbsp;&nbsp; 0.3.0
26+
* **version**&nbsp;&nbsp;&nbsp; 0.5.0
2627

2728
##Documentation
2829

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

6263
| Date | Version | Description |
6364
| :--- | :--- | :--- |
65+
| 3/18/2017 | 0.5.0 | Refactored to use more future proof ES6 styled stateful components and added Preact support |
6466
| 10/28/2016 | 0.3.0 | Support react 15.3.2 and GWT 2.8 final release |
6567
| 6/18/2016 | 0.2.0 | Update to use gwt-interop-utils library |
6668
| 5/13/2016 | 0.1.0 | Initial preview release to Maven Central |

build.gradle

+2-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-react'
9-
version = "0.3.0"
9+
version = "0.5.0"
1010

1111
buildscript {
1212
repositories {
@@ -54,7 +54,7 @@ gwt {
5454
maxHeapSize = "4096M";
5555

5656
dependencies {
57-
gwt group: 'com.github.gwtreact', name: 'gwt-interop-utils', version: '0.2.0'
57+
gwt group: 'com.github.gwtreact', name: 'gwt-interop-utils', version: '0.3.0'
5858
}
5959
}
6060

0 commit comments

Comments
 (0)