summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.md5
-rw-r--r--lib/slop.rb2
-rw-r--r--slop.gemspec2
3 files changed, 5 insertions, 4 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 4266824..a92dc7f 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,6 +1,7 @@
-HEAD
-----
+3.4.1 (2013-01-13)
+------------------
+* Ensure options replace any existing duplicates
* Command config options now inherit config options from top level Slop.
* Command help output now adds command in usage string.
diff --git a/lib/slop.rb b/lib/slop.rb
index 6ebe8a1..c10c47d 100644
--- a/lib/slop.rb
+++ b/lib/slop.rb
@@ -4,7 +4,7 @@ require 'slop/commands'
class Slop
include Enumerable
- VERSION = '3.4.0'
+ VERSION = '3.4.1'
# The main Error class, all Exception classes inherit from this class.
class Error < StandardError; end
diff --git a/slop.gemspec b/slop.gemspec
index 625bae0..67ef90c 100644
--- a/slop.gemspec
+++ b/slop.gemspec
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'slop'
- s.version = '3.4.0'
+ s.version = '3.4.1'
s.summary = 'Option gathering made easy'
s.description = 'A simple DSL for gathering options and parsing the command line'
s.author = 'Lee Jarvis'