Preparing for next development release, 3.0.1.

This commit is contained in:
dblock 2014-06-03 10:25:17 -07:00
parent 4a059050df
commit 389e5404fd
3 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,7 @@
## Next Release
* Your contribution here.
## 3.0 (6/3/2014)
**Note:** This version introduces several backward incompatible API changes. See [UPGRADING](UPGRADING.md) for details.
@ -8,7 +12,6 @@
* [#152](https://github.com/intridea/hashie/pull/152): Do not automatically stringify keys in Hashie::Hash#to_hash, pass `:stringify_keys` to achieve backward compatible behavior - [@dblock](https://github.com/dblock).
* [#148](https://github.com/intridea/hashie/pull/148): Consolidated Hashie::Hash#stringify_keys implementation - [@dblock](https://github.com/dblock).
* [#149](https://github.com/intridea/hashie/issues/149): Allow IgnoreUndeclared and DeepMerge to be used with undeclared properties - [@jhaesus](https://github.com/jhaesus).
* Your contribution here.
## 2.1.1 (4/12/2014)

View File

@ -12,7 +12,7 @@ $ gem install hashie
## Upgrading
You're reading the documentation for the stable release of Hashie, 3.0. Please read [UPGRADING](UPGRADING.md) when upgrading from a previous version.
You're reading the documentation for the next release of Hashie, which should be 3.0.1. Please read [UPGRADING](UPGRADING.md) when upgrading from a previous version. The current stable release is [3.0](https://github.com/intridea/hashie/blob/v3.0.0/README.md).
## Hash Extensions

View File

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