Skip to content

Commit

Permalink
Prepare 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
renchap committed Sep 12, 2017
1 parent d7da36f commit 563cd74
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 10 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.2] - 2017-09-13

### Fixed
- The whole `lodash` library was imported, resulting in a big bundle. Specific `lodash` functions`imports` are now used.
- Helpers are now loaded on `ActionView` loading (fixes #38)
Expand Down Expand Up @@ -37,7 +39,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.1...HEAD
[Unreleased]: https://github.com/renchap/webpacker-react/compare/v0.3.2...HEAD
[0.3.2]: https://github.com/renchap/webpacker-react/tree/v0.3.2
[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
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
webpacker-react (0.3.1)
webpacker-react (0.3.2)
webpacker

GEM
Expand Down Expand Up @@ -156,4 +156,4 @@ DEPENDENCIES
webpacker-react!

BUNDLED WITH
1.15.0
1.15.4
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.1) is [available here](https://github.com/renchap/webpacker-react/tree/v0.3.1).*
*__Note:__ This is the documentation for the Git master branch. Documentation for the latest release (0.3.2) is [available here](https://github.com/renchap/webpacker-react/tree/v0.3.2).*

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

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.3.0",
"version": "0.3.2",
"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.3.1".freeze
VERSION = "0.3.2".freeze
end
end
2 changes: 1 addition & 1 deletion test/example_app/package.json
Expand Up @@ -33,7 +33,7 @@
"webpack": "^2.6.1",
"webpack-manifest-plugin": "^1.1.0",
"webpack-merge": "^4.1.0",
"webpacker-react": "file:./../../javascript/webpacker_react-npm-module/dist"
"webpacker-react": "file:../../javascript/webpacker_react-npm-module/dist"
},
"devDependencies": {
"webpack-dev-server": "^2.4.5"
Expand Down
4 changes: 2 additions & 2 deletions test/example_app/yarn.lock
Expand Up @@ -4598,8 +4598,8 @@ webpack@^2.6.1:
webpack-sources "^0.2.3"
yargs "^6.0.0"

"webpacker-react@file:./../../javascript/webpacker_react-npm-module/dist":
version "0.2.1"
"webpacker-react@file:../../javascript/webpacker_react-npm-module/dist":
version "0.3.2"

websocket-driver@>=0.5.1:
version "0.6.5"
Expand Down

0 comments on commit 563cd74

Please sign in to comment.