diff options
-rw-r--r-- | CHANGES.md | 5 | ||||
-rw-r--r-- | lib/slop.rb | 2 | ||||
-rw-r--r-- | slop.gemspec | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +3.1.1 (2012-04-24) +------------------ + +* Ensure separators before any options are still being processed (#62) + 3.1.0 (2012-04-23) ------------------ diff --git a/lib/slop.rb b/lib/slop.rb index 4d4e663..12e4eb1 100644 --- a/lib/slop.rb +++ b/lib/slop.rb @@ -4,7 +4,7 @@ require 'slop/commands' class Slop include Enumerable - VERSION = '3.1.0' + VERSION = '3.1.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 cffc354..81f37b4 100644 --- a/slop.gemspec +++ b/slop.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'slop' - s.version = '3.1.0' + s.version = '3.1.1' s.summary = 'Option gathering made easy' s.description = 'A simple DSL for gathering options and parsing the command line' s.author = 'Lee Jarvis' |