summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLee Jarvis <leejarvis@fastmail.com>2021-05-28 19:22:57 +0100
committerLee Jarvis <leejarvis@fastmail.com>2021-05-28 19:22:57 +0100
commit9d81271fd2a899bc6e977d5c16502a6a33a5e44a (patch)
treef6f19469003041292f7b13ef983414e54527cefe
parent89ca46436db6e501790bf7c71cd9dd70569463b8 (diff)
downloadslop-9d81271fd2a899bc6e977d5c16502a6a33a5e44a.tar.gz
Bump version to 4.9.1v4.9.1
-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 ad9ff5c..fdd1e96 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,13 @@
Changelog
=========
+v4.9.1 (2021-05-28)
+-------------------
+
+Bug fixes:
+ * Fixed a bug where `flag=arg` syntax would raise an error when an
+ empty value was passed. [#266](https://github.com/leejarvis/slop/issues/266)
+
v4.9.0 (2021-05-11)
-------------------
diff --git a/lib/slop.rb b/lib/slop.rb
index 7c466a3..35da9cd 100644
--- a/lib/slop.rb
+++ b/lib/slop.rb
@@ -6,7 +6,7 @@ require 'slop/types'
require 'slop/error'
module Slop
- VERSION = '4.9.0'
+ VERSION = '4.9.1'
# Parse an array of options (defaults to ARGV). Accepts an
# optional hash of configuration options and block.