summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordblock <dblock@dblock.org>2016-04-29 12:35:13 -0400
committerdblock <dblock@dblock.org>2016-04-29 12:35:13 -0400
commitfb186400247779f90aacf23fa2cde044cbac387c (patch)
tree7bd2032df1bb9198ec1b9397c55044d284afc76c
parent3cfa2b3e080dcbb839504d8d35c35ed47d9fafe3 (diff)
downloadhashie-fb186400247779f90aacf23fa2cde044cbac387c.tar.gz
Preparing for the next development iteration, 3.4.5.
-rw-r--r--CHANGELOG.md32
-rw-r--r--README.md2
-rw-r--r--RELEASING.md4
-rw-r--r--lib/hashie/version.rb2
4 files changed, 37 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 792b1f0..0bb43a6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/README.md b/README.md
index 98f62cf..7c471f2 100644
--- a/README.md
+++ b/README.md
@@ -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
diff --git a/RELEASING.md b/RELEASING.md
index b604875..d669dd0 100644
--- a/RELEASING.md
+++ b/RELEASING.md
@@ -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
```
diff --git a/lib/hashie/version.rb b/lib/hashie/version.rb
index 4517075..9969583 100644
--- a/lib/hashie/version.rb
+++ b/lib/hashie/version.rb
@@ -1,3 +1,3 @@
module Hashie
- VERSION = '3.4.4'
+ VERSION = '3.4.5'
end