Skip to content

Commit

Permalink
Prepare 0.3.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
renchap committed May 30, 2017
1 parent b623d5a commit 8a16e43
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Expand Up @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [0.3.1] - 2017-05-30

### Fixed
- Move test Rake tasks out of `lib/tasks` (fixes #33)

Expand All @@ -31,7 +33,8 @@ 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.3.0...HEAD
[Unreleased]: https://github.com/renchap/webpacker-react/compare/v0.3.1...HEAD
[0.3.1]: https://github.com/renchap/webpacker-react/tree/v0.3.1
[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.3.0)
webpacker-react (0.3.1)
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.3.0) is [available here](https://github.com/renchap/webpacker-react/tree/v0.3.0).*
*__Note:__ This is the documentation for the Git master branch. Documentation for the latest release (0.3.1) is [available here](https://github.com/renchap/webpacker-react/tree/v0.3.1).*

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.3.0"
gem 'webpacker-react', "~> 0.3.1"
```

Once done, run `bundle` to install the gem.
Expand Down
2 changes: 1 addition & 1 deletion lib/webpacker/react/version.rb
@@ -1,5 +1,5 @@
module Webpacker
module React
VERSION = "0.3.0".freeze
VERSION = "0.3.1".freeze
end
end

0 comments on commit 8a16e43

Please sign in to comment.