Skip to content

Commit

Permalink
Bump to version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renchap committed May 27, 2017
1 parent 444208e commit 25416b7
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 10 deletions.
14 changes: 9 additions & 5 deletions CHANGELOG.md
Expand Up @@ -6,25 +6,29 @@ 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
- render React components from views using the `react_component` helper
- 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
2 changes: 1 addition & 1 deletion Gemfile.lock
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
webpacker-react (0.2.0)
webpacker-react (0.3.0)
webpacker

GEM
Expand Down
4 changes: 2 additions & 2 deletions 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.

Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion 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",
Expand Down
2 changes: 1 addition & 1 deletion 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

0 comments on commit 25416b7

Please sign in to comment.