diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d6cc29f2..d850aaea9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,12 +8,26 @@ #### Bug Fixes +## 2.4.1 + +#### Breaking Changes + +#### New Features +- Webpacker gets ES6 components by default #822 +- ReactDOM.hydrate() #828 +- Documentation updates #830 + +#### Deprecation + +#### Bug Fixes +- Webpacker local manifest sometimes had double asset_hosts if the dev server was running #834 thanks @joeyparis + ## 2.4.0 #### Breaking Changes - (Sprockets) Prebundled React upgraded to 16 #792 -- (Sprockets) Addons removed # 792 +- (Sprockets) Addons removed #792 #### New Features diff --git a/VERSIONS.md b/VERSIONS.md index c372f4f37..9b0c2d5c9 100644 --- a/VERSIONS.md +++ b/VERSIONS.md @@ -10,6 +10,7 @@ You can control what version of React.js (and JSXTransformer) is used by `react- | Gem | React.js | |----------|----------| | master | 16.0.0 | +| 2.4.1 | 16.0.0 | | 2.4.0 | 16.0.0 | | 2.3.1 | 15.6.2 | Updated Addons | 2.3.0 | 15.6.2 | diff --git a/lib/react/rails/version.rb b/lib/react/rails/version.rb index 4af4d2a51..e82a11064 100644 --- a/lib/react/rails/version.rb +++ b/lib/react/rails/version.rb @@ -2,6 +2,6 @@ module React module Rails # If you change this, make sure to update VERSIONS.md # and republish the UJS by updating package.json and `bundle exec rake ujs:publish` - VERSION = '2.4.0' + VERSION = '2.4.1' end end