summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLee Jarvis <ljjarvis@gmail.com>2013-01-12 11:42:49 +0000
committerLee Jarvis <ljjarvis@gmail.com>2013-01-12 11:42:49 +0000
commite7828864b0289aa4852bde3ae16366c34a032291 (patch)
tree11e3a25026e88d9b42b86ddf72c4205e02d3b480
parent572a8adbc63c07f607ecbcd2fc314a00a2cd3904 (diff)
downloadslop-e7828864b0289aa4852bde3ae16366c34a032291.tar.gz
version 3.4.0v3.4.0
-rw-r--r--CHANGES.md6
-rw-r--r--lib/slop.rb2
-rw-r--r--slop.gemspec2
3 files changed, 6 insertions, 4 deletions
diff --git a/CHANGES.md b/CHANGES.md
index e6cfa80..c2e67b1 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,6 +1,8 @@
-HEAD
-----
+3.4.0 (2013-01-12)
+------------------
+* Implement new command system (#95)
+* Deprecate Slop::Commands
* Ensure 'no-foo' options are not inverted when parsing '--no-foo' (#86)
* Code refactoring and simplification (Kenichi Kamiya, #84, #85)
diff --git a/lib/slop.rb b/lib/slop.rb
index a7b25ca..86ad70b 100644
--- a/lib/slop.rb
+++ b/lib/slop.rb
@@ -4,7 +4,7 @@ require 'slop/commands'
class Slop
include Enumerable
- VERSION = '3.3.3'
+ VERSION = '3.4.0'
# The main Error class, all Exception classes inherit from this class.
class Error < StandardError; end
diff --git a/slop.gemspec b/slop.gemspec
index 2962f10..625bae0 100644
--- a/slop.gemspec
+++ b/slop.gemspec
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'slop'
- s.version = '3.3.3'
+ s.version = '3.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'