summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLee Jarvis <leejarvis@fastmail.com>2022-09-30 15:13:06 +0100
committerLee Jarvis <leejarvis@fastmail.com>2022-09-30 15:13:06 +0100
commit5ac67f33f9a295e976319b29d03cc68cd22e9345 (patch)
tree00ca5affa85bad2ce231e650df63f473218a6f5e
parent24d85e008597128bdc5d173b7e05651f918d0646 (diff)
downloadslop-5ac67f33f9a295e976319b29d03cc68cd22e9345.tar.gz
Bump version to 4.9.3v4.9.3
-rw-r--r--CHANGELOG.md6
-rw-r--r--lib/slop.rb2
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 727b0ca..a0a76c7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,12 @@
Changelog
=========
+v4.9.3 (2022-09-30)
+-------------------
+
+Bug fixes:
+ * Fix explicitly false boolean options and allow for additional false arguments [#276](https://github.com/leejarvis/slop/pull/276) (Eugene Otto)
+
v4.9.2 (2022-03-26)
-------------------
diff --git a/lib/slop.rb b/lib/slop.rb
index e322ef8..ae162c5 100644
--- a/lib/slop.rb
+++ b/lib/slop.rb
@@ -6,7 +6,7 @@ require 'slop/types'
require 'slop/error'
module Slop
- VERSION = '4.9.2'
+ VERSION = '4.9.3'
# Parse an array of options (defaults to ARGV). Accepts an
# optional hash of configuration options and block.