Skip to content

Commit 829b4d9

Browse files
committed
1.3.0
1 parent d25c7b4 commit 829b4d9

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@
44

55
#### New Features
66

7+
#### Deprecation
8+
9+
#### Bug Fixes
10+
11+
## 1.3.0 (September 15, 2015)
12+
13+
#### Breaking Changes
14+
15+
#### New Features
16+
717
- Render components directly from the controller with `render component: ...` #329
818
- Provide a custom view helper with `config.react.view_helper_implementation` #346
919

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ in your Ruby on Rails (3.2+) application. `react-rails` can:
2424
Add `react-rails` to your gemfile:
2525

2626
```ruby
27-
gem 'react-rails', '1.2.0'
27+
gem 'react-rails', '~> 1.3.0'
2828
```
2929

3030
Next, run the installation script:

VERSIONS.md

+1
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.13.3 |
13+
| 1.3.0 | 0.13.3 |
1314
| 1.2.0 | 0.13.3 |
1415
| 1.1.0 | 0.13.3 |
1516
| 1.0.0 | ~> 0.13 |

lib/react/rails/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module React
22
module Rails
33
# If you change this, make sure to update VERSIONS.md
4-
VERSION = '1.2.0'
4+
VERSION = '1.3.0'
55
end
66
end

0 commit comments

Comments
 (0)