summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLee Jarvis <leejarvis@fastmail.com>2017-05-02 14:11:39 +0100
committerLee Jarvis <leejarvis@fastmail.com>2017-05-02 14:11:39 +0100
commit3230daec1218ca75c27f2049282a5b65e5b09ac5 (patch)
tree4de9c370be014f778d44760b9c1b173db22a33c4
parent9ff6b2a8eb7e5376c5b9f36fcc0f2fdba6b0e054 (diff)
parent3d95e93bedd39011daf0785a8fc6b58f79e84b8b (diff)
downloadslop-3230daec1218ca75c27f2049282a5b65e5b09ac5.tar.gz
Merge tag 'v4.4.3'
Version 4.4.3
-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.