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