summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md7
-rw-r--r--lib/slop.rb2
2 files changed, 8 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c09f767..f5e288c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,13 @@
Changelog
=========
+v4.4.1 (2016-08-21)
+-------------------
+
+Bug fixes:
+ * Handle bad constant names in `Slop.option_defined?`. #198
+ (Ellen Marie Dash)
+
v4.4.0 (2016-08-15)
-------------------
diff --git a/lib/slop.rb b/lib/slop.rb
index 45edb7f..6c7b5e1 100644
--- a/lib/slop.rb
+++ b/lib/slop.rb
@@ -6,7 +6,7 @@ require 'slop/types'
require 'slop/error'
module Slop
- VERSION = '4.4.0'
+ VERSION = '4.4.1'
# Parse an array of options (defaults to ARGV). Accepts an
# optional hash of configuration options and block.