diff --git a/CHANGELOG.md b/CHANGELOG.md index a375179..98a2f27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,13 +3,30 @@ All notable changes to rantly will be documented in this file. The curated log b This project adheres to [Semantic Versioning](http://semver.org/). -## [Master](https://github.com/rantly-rb/rantly/compare/1.2.0...master) (unreleased) +## [Master](https://github.com/rantly-rb/rantly/compare/2.0.0...master) (unreleased) + +### New features + +### Bug fixes + ### Changes -- Add support for float ranges to `range` generator & return `nil` for invalid ranges + + +## [2.0.0](https://github.com/rantly-rb/rantly/compare/1.2.0...2.0.0) - 2019-01-08 + +### New features +- Add support for float ranges to `range` generator + - [Issue #60](https://github.com/rantly-rb/rantly/issues/60) + - thanks [Trevor Brown][Trevor Brown] + +### Bug fixes +- `range` generator returns `nil` for invalid ranges - [Issue #60](https://github.com/rantly-rb/rantly/issues/60) - - thanks [Trevor Brown][Trevor Brown] and [Ana María Martínez Gómez][Ana María Martínez Gómez] + - thanks [Ana María Martínez Gómez][Ana María Martínez Gómez] - `choose` generator returns `nil` when no values are given - thanks [Ana María Martínez Gómez][Ana María Martínez Gómez] + +### Changes - Only support for Ruby >= 2.4 and JRuby >= 9.2 - [Issue #42](https://github.com/rantly-rb/rantly/issues/42) and [issue #37](https://github.com/rantly-rb/rantly/issues/37) - Do not render all shrinking levels, only the failing case and the minimal failed data. diff --git a/VERSION.yml b/VERSION.yml index 69eda59..c6bf6de 100644 --- a/VERSION.yml +++ b/VERSION.yml @@ -1,5 +1,5 @@ --- :build: -:major: 1 -:minor: 2 +:major: 2 +:minor: 0 :patch: 0 diff --git a/rantly.gemspec b/rantly.gemspec index 7f108ea..ca22cd9 100644 --- a/rantly.gemspec +++ b/rantly.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |s| s.name = 'rantly' s.summary = 'Ruby Imperative Random Data Generator and Quickcheck' s.homepage = 'https://github.com/rantly-rb/rantly' - s.version = '1.2.0' + s.version = '2.0.0' s.license = 'MIT' s.require_paths = ['lib'] s.authors = ['Ana María Martínez Gómez', 'Howard Yeh', 'Anthony Bargnesi', 'Eric Bischoff']