Skip to content

Commit 08ac8f8

Browse files
committed
1.6.1
1 parent 5cf57d6 commit 08ac8f8

File tree

4 files changed

+20
-7
lines changed

4 files changed

+20
-7
lines changed

CHANGELOG.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,24 @@
44

55
#### New Features
66

7-
- UJS can mount and unmount a component by ID (not only the component's children) #466
8-
- Support Turbolinks 5
7+
#### Deprecation
8+
9+
#### Bug Fixes
10+
11+
## 1.6.1 (February 28, 2016)
12+
13+
#### Breaking Changes
14+
15+
#### New Features
16+
17+
- UJS can mount and unmount a component by ID (not only the component's children) #466
18+
- Support Turbolinks 5 #475
919

1020
#### Deprecation
1121

1222
#### Bug Fixes
1323

14-
- Support nested arrays with `camelize_props` #480
24+
- Support nested arrays with `camelize_props` #480
1525
- Improve Sprockets 3 compatibility #453
1626
- Fix install-generator `require` spacing #476
1727

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ in your Ruby on Rails (3.2+) application. `react-rails` can:
1919
- [Generate components](#component-generator) with a Rails generator
2020
- [Be extended](#extending-react-rails) with custom renderers, transformers and view helpers
2121

22-
Just getting started with React? Make sure to check out the [Getting Started] (https://facebook.github.io/react/docs/getting-started.html) guide. If you're looking for a Webpack integrated method, see [Related Projects](#related-projects) below.
22+
Just getting started with React? Make sure to check out the [Getting Started] (https://facebook.github.io/react/docs/getting-started.html) guide. Also, see [Related Projects](#related-projects) below.
2323

2424
## Installation
2525

@@ -397,5 +397,7 @@ Any subclass of `ExecJSRenderer` may use those hooks (for example, `SprocketsRen
397397

398398
### Related Projects
399399

400-
1. [react\_on\_rails Gem](https://github.com/shakacode/react_on_rails): Webpack Integration of React with Rails utilizing the modern JavaScript tooling and libraries, including Webpack, Babel, React, Redux, React-Router. You can an example of this live at [www.reactrails.com](http://www.reactrails.com).
401-
2. [React.rb](http://reactrb.org/): Use Ruby to build reactive user interfaces with React under the covers.[github source code here](https://github.com/zetachang/react.rb).
400+
- [react\_on\_rails Gem](https://github.com/shakacode/react_on_rails): Webpack Integration of React with Rails utilizing the modern JavaScript tooling and libraries, including Webpack, Babel, React, Redux, React-Router. You can an example of this live at [www.reactrails.com](http://www.reactrails.com).
401+
- [React.rb](http://reactrb.org/): Use Ruby to build reactive user interfaces with React under the covers.[github source code here](https://github.com/zetachang/react.rb).
402+
- [react-rails-hot-loader](https://github.com/rmosolgo/react-rails-hot-loader) is a simple live-reloader for `react-rails`.
403+
- [react-rails-benchmark_renderer](https://github.com/pboling/react-rails-benchmark_renderer) adds performance instrumentation to server rendering.

VERSIONS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ You can control what version of React.js (and JSXTransformer) is used by `react-
1010
| Gem | React.js |
1111
|----------|----------|
1212
| master | 0.14.6 |
13+
| 1.6.1 | 0.14.6 |
1314
| 1.6.0 | 0.14.6 |
1415
| 1.5.0 | 0.14.3 |
1516
| 1.4.2 | 0.14.2 |

lib/react/rails/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ module React
22
module Rails
33
# If you change this, make sure to update VERSIONS.md
44
# And the version hint in README.md, if needed
5-
VERSION = '1.6.0'
5+
VERSION = '1.6.1'
66
end
77
end

0 commit comments

Comments
 (0)