File tree 4 files changed +25
-4
lines changed
4 files changed +25
-4
lines changed Original file line number Diff line number Diff line change 4
4
5
5
#### New Features
6
6
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
8
20
9
21
#### Deprecation
10
22
11
23
#### Bug Fixes
12
24
25
+ - Fix install generator when ` //= require ` s are malformed #463
26
+ - Use ` before_action ` if available #456
13
27
- Add CHANGELOG to gem bundle #471
14
28
- Use ` window.attachEvent ` to support IE8 without jQuery 😬#446
15
29
Original file line number Diff line number Diff line change @@ -26,7 +26,13 @@ Just getting started with React? Make sure to check out the [Getting Started] (h
26
26
Add ` react-rails ` to your gemfile:
27
27
28
28
``` 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
30
36
```
31
37
32
38
Next, run the installation script:
Original file line number Diff line number Diff line change @@ -9,7 +9,8 @@ You can control what version of React.js (and JSXTransformer) is used by `react-
9
9
10
10
| Gem | React.js |
11
11
| ----------| ----------|
12
- | master | 0.14.3 |
12
+ | master | 0.14.6 |
13
+ | 1.6.0 | 0.14.6 |
13
14
| 1.5.0 | 0.14.3 |
14
15
| 1.4.2 | 0.14.2 |
15
16
| 1.4.1 | 0.14.0 |
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ module React
2
2
module Rails
3
3
# If you change this, make sure to update VERSIONS.md
4
4
# And the version hint in README.md, if needed
5
- VERSION = '1.5 .0'
5
+ VERSION = '1.6 .0'
6
6
end
7
7
end
You can’t perform that action at this time.
0 commit comments