From 25416b75c3a0619fbcfc6053560aee1ceebfc8ef Mon Sep 17 00:00:00 2001 From: Renaud Chaput Date: Sat, 27 May 2017 21:44:28 +0200 Subject: [PATCH] Bump to version 0.3.0 --- CHANGELOG.md | 14 +++++++++----- Gemfile.lock | 2 +- README.md | 4 ++-- .../webpacker_react-npm-module/dist/package.json | 2 +- lib/webpacker/react/version.rb | 2 +- 5 files changed, 14 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c9c23b..1799227 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,20 +6,21 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.3.0] - 2017-05-27 + ### Added +- Webpacker 1.2 and 2.0 support - Added a `tag` option to change the tag used to render the component (default is `div`) -## 0.2.0 - 2017-03-20 +## [0.2.0] - 2017-03-20 ### Added - support for Turbolinks 5, Turbolinks 2.4 and PJAX. Components will be mounted and unmounted when Turbolinks-specific events occur. Also, the integration works with Turbolinks 5 cache. - New `WebpackerReact.setup({Component1, Component2, ...})` initialization API. The old API couldn't properly detect the components' names, thus user is required to provide the names in the configuration object's keys. - ### Removed - `WebpackerReact.register(Component)` has been dropped in favor of `WebpackerReact.setup({Component})` - -## 0.1.0 - 2017-02-23 +## [0.1.0] - 2017-02-23 ### Added - First released version @@ -27,4 +28,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - render React components from controllers using `render react_component: 'name'` (#1 by @daninfpj) - basic Hot Module Remplacement (#7 by @mfazekas) -[Unreleased]: https://github.com/renchap/webpacker-react/compare/v0.2.0...HEAD +[Unreleased]: https://github.com/renchap/webpacker-react/compare/v0.3.0...HEAD +[0.3.0]: https://github.com/renchap/webpacker-react/tree/v0.3.0 +[0.2.0]: https://github.com/renchap/webpacker-react/tree/v0.2.0 +[0.1.0]: https://github.com/renchap/webpacker-react/tree/v0.1.0 diff --git a/Gemfile.lock b/Gemfile.lock index 27294b9..fee478e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - webpacker-react (0.2.0) + webpacker-react (0.3.0) webpacker GEM diff --git a/README.md b/README.md index 9efd1e8..c59416a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Webpacker-React [![CircleCI](https://circleci.com/gh/renchap/webpacker-react.svg?style=svg)](https://circleci.com/gh/renchap/webpacker-react) -*__Note:__ This is the documentation for the Git master branch. Documentation for the latest release (0.2.0) is [available here](https://github.com/renchap/webpacker-react/tree/f03087417a9d00dcad2892b9509e83f3b6cceda3).* +*__Note:__ This is the documentation for the Git master branch. Documentation for the latest release (0.3.0) is [available here](https://github.com/renchap/webpacker-react/tree/v0.3.0).* Webpacker-React makes it easy to use [React](https://facebook.github.io/react/) with [Webpacker](https://github.com/rails/webpacker) in your Rails applications. @@ -15,7 +15,7 @@ Your Rails application needs to use Webpacker and have the React integration don First, you need to add the webpacker-react gem to your Rails app Gemfile: ```ruby -gem 'webpacker-react', "~> 0.2.0" +gem 'webpacker-react', "~> 0.3.0" ``` Once done, run `bundle` to install the gem. diff --git a/javascript/webpacker_react-npm-module/dist/package.json b/javascript/webpacker_react-npm-module/dist/package.json index 7bd9e42..eca2180 100644 --- a/javascript/webpacker_react-npm-module/dist/package.json +++ b/javascript/webpacker_react-npm-module/dist/package.json @@ -1,6 +1,6 @@ { "name": "webpacker-react", - "version": "0.2.1", + "version": "0.3.0", "description": "Javascript", "main": "index.js", "homepage": "https://github.com/renchap/webpacker-react", diff --git a/lib/webpacker/react/version.rb b/lib/webpacker/react/version.rb index 8a11cc8..c21abeb 100644 --- a/lib/webpacker/react/version.rb +++ b/lib/webpacker/react/version.rb @@ -1,5 +1,5 @@ module Webpacker module React - VERSION = "0.2.0".freeze + VERSION = "0.3.0".freeze end end