summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordblock <dblock@dblock.org>2015-10-25 14:55:44 -0400
committerdblock <dblock@dblock.org>2015-10-25 14:55:44 -0400
commit33a2b6f2653849824e329a07db2a74761221f5f6 (patch)
tree396876345532a9ea1b9f31a7992986c9df683f21
parent164c31fb5bd90cdab35b004b2cdcb35e810b0451 (diff)
downloadhashie-33a2b6f2653849824e329a07db2a74761221f5f6.tar.gz
Preparing for release, 3.4.3. [ci skip]v3.4.3
-rw-r--r--CHANGELOG.md3
-rw-r--r--README.md8
2 files changed, 5 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b758559..06a6775 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,5 @@
-## Next Release
+## 3.4.2 (10/25/2015)
-* Your contribution here.
* [#314](https://github.com/intridea/hashie/pull/314): Added a `StrictKeyAccess` extension that will raise an error whenever a key is accessed that does not exist in the hash - [@pboling](https://github.com/pboling).
* [#304](https://github.com/intridea/hashie/pull/304): Ensured compatibility of `Hash` extensions with singleton objects - [@regexident](https://github.com/regexident).
* [#306](https://github.com/intridea/hashie/pull/306): Added `Hashie::Extensions::Dash::Coercion` - [@marshall-lee](https://github.com/marshall-lee).
diff --git a/README.md b/README.md
index eba8bcc..4c94cdd 100644
--- a/README.md
+++ b/README.md
@@ -18,9 +18,9 @@ Hashie is available as a RubyGem:
$ gem install hashie
```
-## Upgrading
+## Stable Release
-You're reading the documentation for the next release of Hashie, which should be 3.4.3. Please read [UPGRADING](UPGRADING.md) when upgrading from a previous version. The current stable release is [3.4.2](https://github.com/intridea/hashie/blob/v3.4.2/README.md).
+You're reading the documentation for the stable release [3.4.3](https://github.com/intridea/hashie/blob/v3.4.3/README.md).
## Hash Extensions
@@ -395,9 +395,9 @@ books.deep_locate -> (key, value, object) { key == :pages && value <= 120 }
## StrictKeyAccess
This extension can be mixed in to allow a Hash to raise an error when attempting to extract a value using a non-existent key.
-
+
### Example:
-
+
```ruby
class StrictKeyAccessHash < Hash
include Hashie::Extensions::StrictKeyAccess