Skip to content

Commit

Permalink
Release 1.0.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
renchap committed Jul 9, 2019
1 parent a8f3c6b commit 174cad7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 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]

## [1.0.0-beta.1]

### Added
- Instructions to set up `react-hot-loader` 4 (fixed #51)

Expand Down Expand Up @@ -52,7 +54,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.2...HEAD
[Unreleased]: https://github.com/renchap/webpacker-react/compare/v1.0.0-beta.1...HEAD
[1.0.0-beta.1]: https://github.com/renchap/webpacker-react/tree/v1.0.0-beta.1
[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
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.2) is [available here](https://github.com/renchap/webpacker-react/tree/v0.3.2).*
*__Note:__ This is the documentation for the Git master branch. Documentation for the latest release (1.0.0-beta.1) 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.4.0"
gem 'webpacker-react', "~> 1.0.0.beta.1"
```

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.4.0",
"version": "1.0.0-beta.1",
"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.4.0".freeze
VERSION = "1.0.0.beta.1".freeze
end
end
3 changes: 2 additions & 1 deletion webpacker-react.gemspec
Expand Up @@ -5,6 +5,7 @@ require "webpacker/react/version"

Gem::Specification.new do |spec|
spec.name = "webpacker-react"
spec.licenses = ["MIT"]
spec.version = Webpacker::React::VERSION
spec.authors = ["Renaud Chaput"]
spec.email = ["renchap@gmail.com"]
Expand All @@ -20,7 +21,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.required_ruby_version = ">= 1.9.3"
spec.required_ruby_version = ">= 2.3.0"

spec.add_dependency "webpacker"

Expand Down

0 comments on commit 174cad7

Please sign in to comment.