diff --git a/README.md b/README.md index de1cf18..568ddcc 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +### NOTE: This project is no longer actively maintained. + # PyReact PyReact is a Python wrapper around the [React](http://facebook.github.io/react/) JavaScript library and [JSX](http://facebook.github.io/react/docs/jsx-in-depth.html). @@ -13,7 +15,7 @@ Specifically, it provides an API to transform JSX files into JavaScript from wit Alternatively, add it into your `requirements` file: - PyReact==0.5.2 + PyReact==0.6.0 **Dependencies**: PyReact uses [PyExecJS](https://github.com/doloopwhile/PyExecJS) to execute the bundled React code, which requires that a JS runtime environment is installed on your machine. We don't explicitly set a dependency on a runtime environment; Mac OS X comes bundled with one. If you're on a different platform, we recommend [PyV8](https://code.google.com/p/pyv8/). diff --git a/VERSIONS.md b/VERSIONS.md index 2b8a7d5..475bcd3 100644 --- a/VERSIONS.md +++ b/VERSIONS.md @@ -14,3 +14,4 @@ This file lists the version(s) of React that are bundled with each version of Py | 0.5.0 | 0.12.0| | 0.5.1 | 0.12.1| | 0.5.2 | 0.12.1| +| 0.6.0 | 0.13.3| diff --git a/react/__init__.py b/react/__init__.py index 09a9e4d..4d1129d 100644 --- a/react/__init__.py +++ b/react/__init__.py @@ -13,5 +13,5 @@ # limitations under the License. -VERSION = '0.5.2' -REACT_VERSION = '0.12.1' +VERSION = '0.6.0' +REACT_VERSION = '0.13.3'