Preparing for next development iteration, 3.4.4. [ci skip]

This commit is contained in:
dblock 2015-10-25 14:57:36 -04:00
parent 33a2b6f265
commit 20a03f0542
3 changed files with 8 additions and 4 deletions

View File

@ -1,4 +1,8 @@
## 3.4.2 (10/25/2015)
## 3.4.4 (Next)
* Your contribution here.
## 3.4.3 (10/25/2015)
* [#314](https://github.com/intridea/hashie/pull/314): Added a `StrictKeyAccess` extension that will raise an error whenever a key is accessed that does not exist in the hash - [@pboling](https://github.com/pboling).
* [#304](https://github.com/intridea/hashie/pull/304): Ensured compatibility of `Hash` extensions with singleton objects - [@regexident](https://github.com/regexident).

View File

@ -18,9 +18,9 @@ Hashie is available as a RubyGem:
$ gem install hashie
```
## Stable Release
## Upgrading
You're reading the documentation for the stable release [3.4.3](https://github.com/intridea/hashie/blob/v3.4.3/README.md).
You're reading the documentation for the next release of Hashie, which should be 3.4.4. Please read [UPGRADING](UPGRADING.md) when upgrading from a previous version. The current stable release is [3.4.4](https://github.com/intridea/hashie/blob/v3.4.3/README.md).
## Hash Extensions

View File

@ -1,3 +1,3 @@
module Hashie
VERSION = '3.4.3'
VERSION = '3.4.4'
end