summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLee Jarvis <lee@jarvis.co>2012-04-23 11:29:59 +0100
committerLee Jarvis <lee@jarvis.co>2012-04-23 11:29:59 +0100
commit2356e8511c156bba4550e49892c17a3a7902c4b9 (patch)
tree216df9e55b70ad8845256ada22c25809fb6f3db2
parent622e953bad4087311cf6760b49a0641b3323b573 (diff)
downloadslop-2356e8511c156bba4550e49892c17a3a7902c4b9.tar.gz
bump version and update readme (v 3.1.0)v3.1.0
-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 0663737..862e59c 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,10 +1,11 @@
-HEAD
-----
+3.1.0
+-----
* Allow options to be fetched via underscores instead of dashes
(as a fallback) (Eric Anderson, #51)
* Added `Slop#strict?` method.
* Added strict checks for Integer/Float type casting. (Amon Sha)
+* Ensure separators are not replacing existing separators (#61)
3.0.4 (2012-01-31)
------------------
diff --git a/lib/slop.rb b/lib/slop.rb
index 026f64b..34c2ccc 100644
--- a/lib/slop.rb
+++ b/lib/slop.rb
@@ -4,7 +4,7 @@ require 'slop/commands'
class Slop
include Enumerable
- VERSION = '3.0.4'
+ VERSION = '3.1.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 1bc37ce..cffc354 100644
--- a/slop.gemspec
+++ b/slop.gemspec
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'slop'
- s.version = '3.0.4'
+ s.version = '3.1.0'
s.summary = 'Option gathering made easy'
s.description = 'A simple DSL for gathering options and parsing the command line'
s.author = 'Lee Jarvis'