diff --git a/HISTORY.md b/HISTORY.md index bf87a77..f33c873 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,20 @@ +# Version 0.0.3 + +Release date 2013-09-16 + +### Added + +* ```logpath``` for ```Logwriter```, ```Logreader``` and ```Hash```. +* ```hashpath``` for ```Hash```. +* Shorthand syntax for puts and gets. Similar to Ruby's native hash: []= and []. +* ```empty?``` method for ```Hash```. +* ```Logreader``` and ```Hash``` mixin [Enumerable](http://ruby-doc.org/core-2.0.0/Enumerable.html). +* ```write_batch``` implemented for ```Logwriter```. + +### Fixed + +* String-check for all input to ```Logwriter``` and ```Hash```. + # Version 0.0.2 Release date 2013-09-12 diff --git a/lib/gnista/version.rb b/lib/gnista/version.rb index 11901d2..64bf24a 100644 --- a/lib/gnista/version.rb +++ b/lib/gnista/version.rb @@ -1,3 +1,3 @@ module Gnista - VERSION = "0.0.2" + VERSION = "0.0.3" end