summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLee Jarvis <lee@jarvis.co>2012-05-15 16:54:25 +0100
committerLee Jarvis <lee@jarvis.co>2012-05-15 16:54:25 +0100
commitf20cc7abcb28df8258262934a7c1af24c9ce6be9 (patch)
treeb876f19461c50a30b7fdd73826f66780eb85332c
parent8e45cf9de2159498a484442e74e121d29aa64cc6 (diff)
downloadslop-f20cc7abcb28df8258262934a7c1af24c9ce6be9.tar.gz
bump version to 3.2.0v3.2.0
-rw-r--r--CHANGES.md5
-rw-r--r--lib/slop.rb2
-rw-r--r--slop.gemspec2
3 files changed, 7 insertions, 2 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 3dd2921..5092be5 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,3 +1,8 @@
+3.2.0 (2012-05-15)
+------------------
+
+* Ensure boolean options appear correctly in `to_hash` output. (#59)
+
3.1.1 (2012-04-24)
------------------
diff --git a/lib/slop.rb b/lib/slop.rb
index 3e13a2e..1e712db 100644
--- a/lib/slop.rb
+++ b/lib/slop.rb
@@ -4,7 +4,7 @@ require 'slop/commands'
class Slop
include Enumerable
- VERSION = '3.1.1'
+ VERSION = '3.2.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 81f37b4..81ca2a3 100644
--- a/slop.gemspec
+++ b/slop.gemspec
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'slop'
- s.version = '3.1.1'
+ s.version = '3.2.0'
s.summary = 'Option gathering made easy'
s.description = 'A simple DSL for gathering options and parsing the command line'
s.author = 'Lee Jarvis'