summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLee Jarvis <leejarvis@fastmail.com>2017-10-06 13:34:13 +0100
committerLee Jarvis <leejarvis@fastmail.com>2017-10-06 13:34:13 +0100
commit6d75ba62bbf4f7e38e9977c4e374d0e9964b43ee (patch)
treea566d788205d305402323811c4a35b54205c6f4d
parent193a8263a34820003a45ad620518fa8df0454b91 (diff)
downloadslop-6d75ba62bbf4f7e38e9977c4e374d0e9964b43ee.tar.gz
Bump version to 4.6.0v4.6.0
includes (closes #218)
-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 d324104..dde8386 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,12 @@
Changelog
=========
+v4.6.0 (2017-10-06)
+-------------------
+
+Features
+ * Add support for required options. #218 (William Woodruff)
+
v4.5.0 (2017-05-22)
-------------------
diff --git a/lib/slop.rb b/lib/slop.rb
index 776fad3..bc30d14 100644
--- a/lib/slop.rb
+++ b/lib/slop.rb
@@ -6,7 +6,7 @@ require 'slop/types'
require 'slop/error'
module Slop
- VERSION = '4.5.0'
+ VERSION = '4.6.0'
# Parse an array of options (defaults to ARGV). Accepts an
# optional hash of configuration options and block.