summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLee Jarvis <lee@jrvs.uk>2023-02-15 19:29:05 +0000
committerLee Jarvis <lee@jrvs.uk>2023-02-15 19:29:05 +0000
commit450ab80f82ac590b20300ee41a6600fb97fd625c (patch)
treecf5626f7ed57de0fe8efd45744975ec500bcbc48
parent2410f313984be1dfe73884251e879b008771535d (diff)
downloadslop-450ab80f82ac590b20300ee41a6600fb97fd625c.tar.gz
Bump version to 4.10.0v4.10.0
-rw-r--r--CHANGELOG.md5
-rw-r--r--lib/slop.rb2
2 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a0a76c7..9af3f7f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,11 @@
Changelog
=========
+v4.10.0 (2023-02-15)
+
+Features:
+ * Add support for optional type validation [#278](https://github.com/leejarvis/slop/pull/278) (Victor Gama)
+
v4.9.3 (2022-09-30)
-------------------
diff --git a/lib/slop.rb b/lib/slop.rb
index ae162c5..7b5ef54 100644
--- a/lib/slop.rb
+++ b/lib/slop.rb
@@ -6,7 +6,7 @@ require 'slop/types'
require 'slop/error'
module Slop
- VERSION = '4.9.3'
+ VERSION = '4.10.0'
# Parse an array of options (defaults to ARGV). Accepts an
# optional hash of configuration options and block.