diff options
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | lib/slop.rb | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index b48b59a..c6d304c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Changelog ========= +v4.6.2 (2018-03-12) + +Bug fixes/Enhancements + * Fix equals character (=) being parsed incorrectly in some cases. #226 + v4.6.1 (2017-11-20) ------------------- diff --git a/lib/slop.rb b/lib/slop.rb index fe979f8..4f836c1 100644 --- a/lib/slop.rb +++ b/lib/slop.rb @@ -6,7 +6,7 @@ require 'slop/types' require 'slop/error' module Slop - VERSION = '4.6.1' + VERSION = '4.6.2' # Parse an array of options (defaults to ARGV). Accepts an # optional hash of configuration options and block. |