Preparing for release, 3.0.

This commit is contained in:
dblock 2014-06-03 09:42:56 -07:00
parent f54e9129d0
commit 4a059050df
4 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
## 3.0 (Next)
## 3.0 (6/3/2014)
**Note:** This version introduces several backward incompatible API changes. See [UPGRADING](UPGRADING.md) for details.

View File

@ -12,7 +12,7 @@ $ gem install hashie
## Upgrading
You're reading the documentation for the next release of Hashie, which should be 2.2. Please read [UPGRADING](UPGRADING.md) when upgrading from a previous version. The current stable release is [2.1.1](https://github.com/intridea/hashie/blob/v2.1.1/README.md).
You're reading the documentation for the stable release of Hashie, 3.0. Please read [UPGRADING](UPGRADING.md) when upgrading from a previous version.
## Hash Extensions
@ -236,7 +236,7 @@ p.trick # => NoMethodError
### Mash and Rails 4 Strong Parameters
To enable compatibility with Rails 4 use the ['hashie\_rails' gem](http://rubygems.org/gems/hashie_rails).
To enable compatibility with Rails 4 use the [hashie_rails](http://rubygems.org/gems/hashie_rails) gem.
## Trash

View File

@ -5,11 +5,11 @@ Upgrading Hashie
#### Compatibility with Rails 4 Strong Parameters
Version 2.1 introduced support to prevent default Rails 4 mass-assignment protection behavior. This was [issue #89](https://github.com/intridea/hashie/issues/89), resolved in [#104](https://github.com/intridea/hashie/pull/104). In version 2.2 this behavior has been removed in [#147](https://github.com/intridea/hashie/pull/147) in favor of a mixin and extracted into a separate gem in 3.0.
Version 2.1 introduced support to prevent default Rails 4 mass-assignment protection behavior. This was [issue #89](https://github.com/intridea/hashie/issues/89), resolved in [#104](https://github.com/intridea/hashie/pull/104). In version 2.2 this behavior has been removed in [#147](https://github.com/intridea/hashie/pull/147) in favor of a mixin and finally extracted into a separate gem in Hashie 3.0.
To enable 2.1 compatible behavior, use the ['hashie\_rails' gem](http://rubygems.org/gems/hashie_rails).
To enable 2.1 compatible behavior with Rails 4, use the [hashie_rails](http://rubygems.org/gems/hashie_rails) gem.
```bash
```
gem 'hashie_rails'
```

View File

@ -1,3 +1,3 @@
module Hashie
VERSION = '2.1.2'
VERSION = '3.0.0'
end