Skip to content

Commit 3b21569

Browse files
committed
1.5.0
1 parent 39c3d4c commit 3b21569

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

CHANGELOG.md

+12-2
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.5.0 (November 25, 2015)
12+
13+
#### Breaking Changes
14+
15+
#### New Features
16+
717
- Update to React 0.14.3 #412
818
- `config.react.camelize_props = true` will camelize `react_component` prop keys #409
919

@@ -14,7 +24,7 @@
1424
- Fix chained `.es6` file names with JSX processor #411
1525
- Don't insert `// =require`s multiple times #398
1626

17-
## 1.4.2
27+
## 1.4.2 (November 5, 2015)
1828

1929
#### Breaking Changes
2030

@@ -27,7 +37,7 @@
2737

2838
#### Bug Fixes
2939

30-
- Support custom attributes when rendering from controller #384
40+
- Support custom attributes when rendering from controller #384
3141

3242
## 1.4.1 (October 23, 2015)
3343

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ 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.4.0'
29+
gem 'react-rails', '~> 1.5.0'
3030
```
3131

3232
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.14.3 |
13+
| 1.5.0 | 0.14.3 |
1314
| 1.4.2 | 0.14.2 |
1415
| 1.4.1 | 0.14.0 |
1516
| 1.4.0 | 0.14.0 |

lib/react/rails/version.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module React
22
module Rails
33
# If you change this, make sure to update VERSIONS.md
4-
VERSION = '1.4.2'
4+
# And the version hint in README.md, if needed
5+
VERSION = '1.5.0'
56
end
67
end

0 commit comments

Comments
 (0)