summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordblock <dblock@dblock.org>2014-06-03 09:42:56 -0700
committerdblock <dblock@dblock.org>2014-06-03 09:42:56 -0700
commit4a059050df17a174d0583440e2fbf8aed7899c2a (patch)
tree4fd0c05a2a2524a69be66a005400a6283a9bfeb3
parentf54e9129d09671e77bdd6f7b42975fcee36ce278 (diff)
downloadhashie-3.0.0.tar.gz
Preparing for release, 3.0.v3.0.0
-rw-r--r--CHANGELOG.md2
-rw-r--r--README.md4
-rw-r--r--UPGRADING.md6
-rw-r--r--lib/hashie/version.rb2
4 files changed, 7 insertions, 7 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index acbe26c..dbd76c0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,4 @@
-## 3.0 (Next)
+## 3.0 (6/3/2014)
**Note:** This version introduces several backward incompatible API changes. See [UPGRADING](UPGRADING.md) for details.
diff --git a/README.md b/README.md
index 15b15b6..3eafa9d 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,7 @@ $ gem install hashie
## Upgrading
-You're reading the documentation for the next release of Hashie, which should be 2.2. Please read [UPGRADING](UPGRADING.md) when upgrading from a previous version. The current stable release is [2.1.1](https://github.com/intridea/hashie/blob/v2.1.1/README.md).
+You're reading the documentation for the stable release of Hashie, 3.0. Please read [UPGRADING](UPGRADING.md) when upgrading from a previous version.
## Hash Extensions
@@ -236,7 +236,7 @@ p.trick # => NoMethodError
### Mash and Rails 4 Strong Parameters
-To enable compatibility with Rails 4 use the ['hashie\_rails' gem](http://rubygems.org/gems/hashie_rails).
+To enable compatibility with Rails 4 use the [hashie_rails](http://rubygems.org/gems/hashie_rails) gem.
## Trash
diff --git a/UPGRADING.md b/UPGRADING.md
index 8d9de59..611d307 100644
--- a/UPGRADING.md
+++ b/UPGRADING.md
@@ -5,11 +5,11 @@ Upgrading Hashie
#### Compatibility with Rails 4 Strong Parameters
-Version 2.1 introduced support to prevent default Rails 4 mass-assignment protection behavior. This was [issue #89](https://github.com/intridea/hashie/issues/89), resolved in [#104](https://github.com/intridea/hashie/pull/104). In version 2.2 this behavior has been removed in [#147](https://github.com/intridea/hashie/pull/147) in favor of a mixin and extracted into a separate gem in 3.0.
+Version 2.1 introduced support to prevent default Rails 4 mass-assignment protection behavior. This was [issue #89](https://github.com/intridea/hashie/issues/89), resolved in [#104](https://github.com/intridea/hashie/pull/104). In version 2.2 this behavior has been removed in [#147](https://github.com/intridea/hashie/pull/147) in favor of a mixin and finally extracted into a separate gem in Hashie 3.0.
-To enable 2.1 compatible behavior, use the ['hashie\_rails' gem](http://rubygems.org/gems/hashie_rails).
+To enable 2.1 compatible behavior with Rails 4, use the [hashie_rails](http://rubygems.org/gems/hashie_rails) gem.
-```bash
+```
gem 'hashie_rails'
```
diff --git a/lib/hashie/version.rb b/lib/hashie/version.rb
index f734804..cd03fd8 100644
--- a/lib/hashie/version.rb
+++ b/lib/hashie/version.rb
@@ -1,3 +1,3 @@
module Hashie
- VERSION = '2.1.2'
+ VERSION = '3.0.0'
end