Preparing for release, 3.6.0

This commit is contained in:
Michael Herold 2018-08-13 18:45:55 -05:00
parent cabb3e702c
commit 19eed7fcc6
No known key found for this signature in database
GPG Key ID: 70391C233DE2F014
3 changed files with 4 additions and 23 deletions

View File

@ -6,26 +6,13 @@ scheme are considered to be bugs.
[semver]: http://semver.org/spec/v2.0.0.html
## [Unreleased][unreleased]
## [3.6.0] - 2018-08-13
[unreleased]: https://github.com/intridea/hashie/compare/v3.5.7...master
[3.6.0]: https://github.com/intridea/hashie/compare/v3.5.7...v3.6.0
### Added
* [#455](https://github.com/intridea/hashie/pull/455): Allow overriding methods when passing in a hash - [@lnestor](https://github.com/lnestor).
* Your contribution here.
### Changed
* Your contribution here.
### Deprecated
* Your contribution here.
### Removed
* Your contribution here.
### Fixed
@ -34,18 +21,12 @@ scheme are considered to be bugs.
* [#437](https://github.com/intridea/hashie/pull/437): Allow codependent properties to be set on Dash - [@michaelherold](https://github.com/michaelherold).
* [#438](https://github.com/intridea/hashie/pull/438): Fix: `NameError (uninitialized constant Hashie::Extensions::Parsers::YamlErbParser::Pathname)` in `Hashie::Mash.load` - [@onk](https://github.com/onk).
* [#457](https://github.com/intridea/hashie/pull/457): Fix `Trash` to allow it to copy properties from other properties - [@michaelherold](https://github.com/michaelherold).
* Your contribution here.
### Security
* Your contribution here.
### Miscellaneous
* [#433](https://github.com/intridea/hashie/pull/433): Update Rubocop to the most recent version - [@michaelherold](https://github.com/michaelherold).
* [#434](https://github.com/intridea/hashie/pull/434): Add documentation around Mash sub-Hashes - [@michaelherold](https://github.com/michaelherold).
* [#439](https://github.com/intridea/hashie/pull/439): Add an integration spec for Elasticsearch - [@michaelherold](https://github.com/michaelherold).
* Your contribution here.
## [3.5.7] - 2017-12-19

View File

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

View File

@ -1,3 +1,3 @@
module Hashie
VERSION = '3.5.8'.freeze
VERSION = '3.6.0'.freeze
end