summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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.