Skip to content

Commit 25416b7

Browse files
committed
Bump to version 0.3.0
1 parent 444208e commit 25416b7

File tree

5 files changed

+14
-10
lines changed

5 files changed

+14
-10
lines changed

CHANGELOG.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,29 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased]
88

9+
## [0.3.0] - 2017-05-27
10+
911
### Added
12+
- Webpacker 1.2 and 2.0 support
1013
- Added a `tag` option to change the tag used to render the component (default is `div`)
1114

12-
## 0.2.0 - 2017-03-20
15+
## [0.2.0] - 2017-03-20
1316

1417
### Added
1518
- 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.
1619
- 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.
17-
1820
### Removed
1921
- `WebpackerReact.register(Component)` has been dropped in favor of `WebpackerReact.setup({Component})`
2022

21-
22-
## 0.1.0 - 2017-02-23
23+
## [0.1.0] - 2017-02-23
2324

2425
### Added
2526
- First released version
2627
- render React components from views using the `react_component` helper
2728
- render React components from controllers using `render react_component: 'name'` (#1 by @daninfpj)
2829
- basic Hot Module Remplacement (#7 by @mfazekas)
2930

30-
[Unreleased]: https://github.com/renchap/webpacker-react/compare/v0.2.0...HEAD
31+
[Unreleased]: https://github.com/renchap/webpacker-react/compare/v0.3.0...HEAD
32+
[0.3.0]: https://github.com/renchap/webpacker-react/tree/v0.3.0
33+
[0.2.0]: https://github.com/renchap/webpacker-react/tree/v0.2.0
34+
[0.1.0]: https://github.com/renchap/webpacker-react/tree/v0.1.0

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
webpacker-react (0.2.0)
4+
webpacker-react (0.3.0)
55
webpacker
66

77
GEM

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Webpacker-React [![CircleCI](https://circleci.com/gh/renchap/webpacker-react.svg?style=svg)](https://circleci.com/gh/renchap/webpacker-react)
22

3-
*__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).*
3+
*__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).*
44

55
Webpacker-React makes it easy to use [React](https://facebook.github.io/react/) with [Webpacker](https://github.com/rails/webpacker) in your Rails applications.
66

@@ -15,7 +15,7 @@ Your Rails application needs to use Webpacker and have the React integration don
1515
First, you need to add the webpacker-react gem to your Rails app Gemfile:
1616

1717
```ruby
18-
gem 'webpacker-react', "~> 0.2.0"
18+
gem 'webpacker-react', "~> 0.3.0"
1919
```
2020

2121
Once done, run `bundle` to install the gem.

javascript/webpacker_react-npm-module/dist/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "webpacker-react",
3-
"version": "0.2.1",
3+
"version": "0.3.0",
44
"description": "Javascript",
55
"main": "index.js",
66
"homepage": "https://github.com/renchap/webpacker-react",

lib/webpacker/react/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Webpacker
22
module React
3-
VERSION = "0.2.0".freeze
3+
VERSION = "0.3.0".freeze
44
end
55
end

0 commit comments

Comments
 (0)