summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLee Jarvis <lee@jarvis.co>2011-11-26 14:12:33 -0800
committerLee Jarvis <lee@jarvis.co>2011-11-26 14:12:33 -0800
commit7b81bf7fe4847c84ce162aa7734865184d585be2 (patch)
treeaf927ad9014f265a7469865c554bcaf6295faa10
parentacd0a96d59e4299dc82f268785e68ba6ca0b0f2b (diff)
downloadslop-7b81bf7fe4847c84ce162aa7734865184d585be2.tar.gz
slop version 2.4.0v2.4.0
-rw-r--r--CHANGES.md4
-rw-r--r--lib/slop.rb2
-rw-r--r--slop.gemspec2
3 files changed, 4 insertions, 4 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 27b80ea..c72ddc4 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,5 +1,5 @@
-HEAD
-----
+2.4.0 (2011-11-26)
+------------------
* Avoid `define_method` for checking an options presence (and caching it) #37
* Ensure the short option allows an appended `=` for accepting arguments
diff --git a/lib/slop.rb b/lib/slop.rb
index 85df7df..cd96c20 100644
--- a/lib/slop.rb
+++ b/lib/slop.rb
@@ -2,7 +2,7 @@ class Slop
include Enumerable
# @return [String] The current version string
- VERSION = '2.3.1'
+ VERSION = '2.4.0'
# Slops standard Error class. All exception classes should
# inherit from this class
diff --git a/slop.gemspec b/slop.gemspec
index ed04362..7d7b80d 100644
--- a/slop.gemspec
+++ b/slop.gemspec
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'slop'
- s.version = '2.3.1'
+ s.version = '2.4.0'
s.summary = 'Option gathering made easy'
s.description = 'A simple DSL for gathering options and parsing the command line'
s.author = 'Lee Jarvis'