summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLee Jarvis <leejarvis@fastmail.com>2020-01-17 08:52:50 +0000
committerLee Jarvis <leejarvis@fastmail.com>2020-01-17 08:52:50 +0000
commitc5e0af0f54ccd3f57b84c8076c455be1905aa1bf (patch)
tree7400ecd2bf9fe3614ddedd92e85d1e7567599218
parentc3825b39a56c1d64820ae30141c4604c857143b7 (diff)
downloadslop-c5e0af0f54ccd3f57b84c8076c455be1905aa1bf.tar.gz
Bump version to v.8.0v4.8.0
-rw-r--r--CHANGELOG.md8
-rw-r--r--lib/slop.rb2
2 files changed, 6 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 32eb29d..6fd1d58 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,14 +1,16 @@
Changelog
=========
-Unreleased
-----------
+v4.8.0 (2020-01-17)
+-------------------
Features:
* Add support for prefixing integer values with `+` character
[#243](https://github.com/leejarvis/slop/pull/243) (Juha Ylitalo)
+ * Add support for parsing floats with scientific notation
+ [#250](https://github.com/leejarvis/slop/pull/250) (Hansuk Hong)
-Maintenance:
+Maintenance:
* Add 2.7.0 to CI and fix warnings
[#248](https://github.com/leejarvis/slop/pull/248) (Juha Ylitalo, Andrew Kane)
diff --git a/lib/slop.rb b/lib/slop.rb
index 0f0d282..cded956 100644
--- a/lib/slop.rb
+++ b/lib/slop.rb
@@ -6,7 +6,7 @@ require 'slop/types'
require 'slop/error'
module Slop
- VERSION = '4.7.0'
+ VERSION = '4.8.0'
# Parse an array of options (defaults to ARGV). Accepts an
# optional hash of configuration options and block.