summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md8
-rw-r--r--lib/slop.rb2
2 files changed, 8 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 34c17b4..914eafb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,7 +8,13 @@ Features:
* Added config option to avoid translating flags-with-dashes into
underscores. #206 (@lbriais)
-v4.4.2 (2017-06-29)
+v4.4.3 (2017-05-02)
+-------------------
+
+Bug fixes:
+ * Ruby 2.0.0 support broken in v4.4.2
+
+v4.4.2 (2017-04-29)
-------------------
Bug fixes:
diff --git a/lib/slop.rb b/lib/slop.rb
index 5d85670..01bc472 100644
--- a/lib/slop.rb
+++ b/lib/slop.rb
@@ -6,7 +6,7 @@ require 'slop/types'
require 'slop/error'
module Slop
- VERSION = '4.4.2'
+ VERSION = '4.4.3'
# Parse an array of options (defaults to ARGV). Accepts an
# optional hash of configuration options and block.