Skip to content

Commit f4fb018

Browse files
committed
1.6.0
1 parent 6d44757 commit f4fb018

File tree

4 files changed

+25
-4
lines changed

4 files changed

+25
-4
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,26 @@
44

55
#### New Features
66

7-
- Individual add-ons can be included in a bundle with sprockets require directives.
7+
#### Deprecation
8+
9+
#### Bug Fixes
10+
11+
## 1.6.0 (February 4, 2016)
12+
13+
#### Breaking Changes
14+
15+
#### New Features
16+
17+
- Individual add-ons can be included in a bundle with sprockets require directives. #457
18+
- Support `sprockets-rails` 3 #430
19+
- Update to React 0.14.6
820

921
#### Deprecation
1022

1123
#### Bug Fixes
1224

25+
- Fix install generator when `//= require`s are malformed #463
26+
- Use `before_action` if available #456
1327
- Add CHANGELOG to gem bundle #471
1428
- Use `window.attachEvent` to support IE8 without jQuery 😬#446
1529

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,13 @@ Just getting started with React? Make sure to check out the [Getting Started] (h
2626
Add `react-rails` to your gemfile:
2727

2828
```ruby
29-
gem 'react-rails', '~> 1.5.0'
29+
gem 'react-rails', '~> 1.6.0'
30+
```
31+
32+
And install:
33+
34+
```
35+
bundle install
3036
```
3137

3238
Next, run the installation script:

VERSIONS.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ You can control what version of React.js (and JSXTransformer) is used by `react-
99

1010
| Gem | React.js |
1111
|----------|----------|
12-
| master | 0.14.3 |
12+
| master | 0.14.6 |
13+
| 1.6.0 | 0.14.6 |
1314
| 1.5.0 | 0.14.3 |
1415
| 1.4.2 | 0.14.2 |
1516
| 1.4.1 | 0.14.0 |

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.5.0'
5+
VERSION = '1.6.0'
66
end
77
end

0 commit comments

Comments
 (0)