Prepare for next development iteration, 3.5.5

This commit is contained in:
Michael Herold 2017-02-22 06:49:01 -06:00
parent 897a3b0726
commit b36de9402e
No known key found for this signature in database
GPG Key ID: 0325A44E1EA06F99
4 changed files with 36 additions and 4 deletions

View File

@ -6,6 +6,38 @@ scheme are considered to be bugs.
[semver]: http://semver.org/spec/v2.0.0.html
## [Unreleased][unreleased]
[unreleased]: https://github.com/intridea/hashie/compare/v3.5.4...master
### Added
* Your contribution here.
### Changed
* Your contribution here.
### Deprecated
* Your contribution here.
### Removed
* Your contribution here.
### Fixed
* Your contribution here.
### Security
* Your contribution here.
### Miscellaneous
* Your contribution here.
## [3.5.4] - 2017-02-22
[3.5.4]: https://github.com/intridea/hashie/compare/v3.5.3...v3.5.4

View File

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

View File

@ -108,7 +108,7 @@ Add new "Unreleased" section to [CHANGELOG.md](CHANGELOG.md) using this template
* Your contribution here.
### Miscellanous
### Miscellaneous
* Your contribution here.
```
@ -120,7 +120,7 @@ Increment the minor version, modify [lib/hashie/version.rb](lib/hashie/version.r
Commit your changes.
```sh
git add CHANGELOG.md README.md
git add CHANGELOG.md README.md lib/hashie/version.rb
git commit -m "Preparing for next development iteration, 3.3.1."
git push origin master
```

View File

@ -1,3 +1,3 @@
module Hashie
VERSION = '3.5.4'
VERSION = '3.5.5'
end