Skip to content

Commit 8a16e43

Browse files
committed
Prepare 0.3.1 release
1 parent b623d5a commit 8a16e43

4 files changed

Lines changed: 8 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased]
88

9+
## [0.3.1] - 2017-05-30
10+
911
### Fixed
1012
- Move test Rake tasks out of `lib/tasks` (fixes #33)
1113

@@ -31,7 +33,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3133
- render React components from controllers using `render react_component: 'name'` (#1 by @daninfpj)
3234
- basic Hot Module Remplacement (#7 by @mfazekas)
3335

34-
[Unreleased]: https://github.com/renchap/webpacker-react/compare/v0.3.0...HEAD
36+
[Unreleased]: https://github.com/renchap/webpacker-react/compare/v0.3.1...HEAD
37+
[0.3.1]: https://github.com/renchap/webpacker-react/tree/v0.3.1
3538
[0.3.0]: https://github.com/renchap/webpacker-react/tree/v0.3.0
3639
[0.2.0]: https://github.com/renchap/webpacker-react/tree/v0.2.0
3740
[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.3.0)
4+
webpacker-react (0.3.1)
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.3.0) is [available here](https://github.com/renchap/webpacker-react/tree/v0.3.0).*
3+
*__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).*
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.3.0"
18+
gem 'webpacker-react', "~> 0.3.1"
1919
```
2020

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

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.3.0".freeze
3+
VERSION = "0.3.1".freeze
44
end
55
end

0 commit comments

Comments
 (0)