Preparing for the next development iteration, 3.4.5.

This commit is contained in:
dblock 2016-04-29 12:35:13 -04:00
parent 3cfa2b3e08
commit fb18640024
4 changed files with 37 additions and 3 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.4.4...master
### Added
* Nothing yet.
### Changed
* Nothing yet.
### Deprecated
* Nothing yet.
### Removed
* Nothing yet.
### Fixed
* Nothing yet.
### Security
* Nothing yet.
### Miscellanous
* Nothing yet.
## [3.4.4] - 2016-04-29
[3.4.4]: https://github.com/intridea/hashie/compare/v3.4.3...v3.4.4

View File

@ -20,7 +20,7 @@ $ gem install hashie
## Upgrading
You're reading the documentation for the stable release of Hashie, 3.4.4. 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.4.5. 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.4/README.md).
## Hash Extensions

View File

@ -115,10 +115,12 @@ Add new "Unreleased" section to [CHANGELOG.md](CHANGELOG.md) using this template
Replace `<THIS_VERSION>` with the newly released versions to set up the compare view on Github.
Increment the minor version, modify [lib/hashie/version.rb](lib/hashie/version.rb).
Commit your changes.
```sh
git add CHANGELOG.md README.md
git commit -m "Preparing for next release."
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.4.4'
VERSION = '3.4.5'
end