From 768c4d8a9a4323440aeda72d39650a6680478e7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ana=20Mar=C3=ADa=20Mart=C3=ADnez=20G=C3=B3mez?= Date: Wed, 29 Aug 2018 17:30:47 +0200 Subject: [PATCH 1/4] Add myself as author in gemspec Author name and contact email. --- rantly.gemspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rantly.gemspec b/rantly.gemspec index 67b959d..438854c 100644 --- a/rantly.gemspec +++ b/rantly.gemspec @@ -4,8 +4,8 @@ Gem::Specification.new do |s| s.homepage = "https://github.com/abargnesi/rantly" s.version = "1.1.0" s.require_paths = ["lib"] - s.authors = ["Howard Yeh", "Anthony Bargnesi", "Eric Bischoff"] - s.email = ["hayeah@gmail.com", "abargnesi@gmail.com", "ebischoff@nerim.net"] + s.authors = ["Ana María Martínez Gómez", "Howard Yeh", "Anthony Bargnesi", "Eric Bischoff"] + s.email = ["anamma06@gmail.com", "hayeah@gmail.com", "abargnesi@gmail.com", "ebischoff@nerim.net"] s.extra_rdoc_files = [ "LICENSE", "README.textile", From d4515006ecc1b101f6812234d023d0d374704f0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ana=20Mar=C3=ADa=20Mart=C3=ADnez=20G=C3=B3mez?= Date: Wed, 29 Aug 2018 17:37:45 +0200 Subject: [PATCH 2/4] Correct homepage in gemspec Project was moved from abargnesi to rantly-rb. --- rantly.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rantly.gemspec b/rantly.gemspec index 438854c..e50f3db 100644 --- a/rantly.gemspec +++ b/rantly.gemspec @@ -1,7 +1,7 @@ Gem::Specification.new do |s| s.name = "rantly" s.summary = "Ruby Imperative Random Data Generator and Quickcheck" - s.homepage = "https://github.com/abargnesi/rantly" + s.homepage = "https://github.com/rantly-rb/rantly" s.version = "1.1.0" s.require_paths = ["lib"] s.authors = ["Ana María Martínez Gómez", "Howard Yeh", "Anthony Bargnesi", "Eric Bischoff"] From a8c430f7907db88ece399afa395e7d56661df86d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ana=20Mar=C3=ADa=20Mart=C3=ADnez=20G=C3=B3mez?= Date: Wed, 29 Aug 2018 17:43:20 +0200 Subject: [PATCH 3/4] Add license to gemspec This project is licensed under MIT. <3 --- rantly.gemspec | 1 + 1 file changed, 1 insertion(+) diff --git a/rantly.gemspec b/rantly.gemspec index e50f3db..294663c 100644 --- a/rantly.gemspec +++ b/rantly.gemspec @@ -3,6 +3,7 @@ Gem::Specification.new do |s| s.summary = "Ruby Imperative Random Data Generator and Quickcheck" s.homepage = "https://github.com/rantly-rb/rantly" s.version = "1.1.0" + s.license = "MIT" s.require_paths = ["lib"] s.authors = ["Ana María Martínez Gómez", "Howard Yeh", "Anthony Bargnesi", "Eric Bischoff"] s.email = ["anamma06@gmail.com", "hayeah@gmail.com", "abargnesi@gmail.com", "ebischoff@nerim.net"] From 58e60e0e4b76ab160e5ea4fe76f26379f5c3abef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ana=20Mar=C3=ADa=20Mart=C3=ADnez=20G=C3=B3mez?= Date: Wed, 29 Aug 2018 17:46:02 +0200 Subject: [PATCH 4/4] Prepare version 1.2.0 == New features == - Allow to generate floats using Gaussian distribution - Issue #29 - thanks @Ana06 and @vicgalle == Bug fixes == - `NoMethodError` - undefined method `retry?` - when a test using `dict` fails - Issue #39 - thanks @Ana06 == Changes == - Correct typo in _Too many tries_ message - thanks @Ana06 --- CHANGELOG.md | 15 +++++++++++++++ VERSION.yml | 2 +- rantly.gemspec | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b0b8f2f..34ad12a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to rantly will be documented in this file. The curated log b This project adheres to [Semantic Versioning](http://semver.org/). +## [1.2.0](https://github.com/abargnesi/rantly/compare/1.1.0...1.2.0) - 2018-08-29 +### New features +- Allow to generate floats using Gaussian distribution + - [Issue #29](https://github.com/rantly-rb/rantly/issues/29) + - thanks [Ana María Martínez Gómez][Ana María Martínez Gómez] and [Víctor Gallego][Víctor Gallego] +### Bug fixes +- `NoMethodError` - undefined method `retry?` - when a test using `dict` fails + - [Issue #39](https://github.com/rantly-rb/rantly/issues/39) + - thanks [Ana María Martínez Gómez][Ana María Martínez Gómez] +### Changes +- Correct typo in _Too many tries_ message + - thanks [Ana María Martínez Gómez][Ana María Martínez Gómez] + + ## [1.1.0][1.1.0] - 2017-04-18 ### Improved - Include failed example and number of example run in failure message. @@ -44,3 +58,4 @@ This project adheres to [Semantic Versioning](http://semver.org/). [Jamie English]: https://github.com/english [Oleksii Fedorov]: https://github.com/waterlink [Ana María Martínez Gómez]: https://github.com/Ana06 +[Víctor Gallego]: https://github.com/vicgalle diff --git a/VERSION.yml b/VERSION.yml index 667a52c..69eda59 100644 --- a/VERSION.yml +++ b/VERSION.yml @@ -1,5 +1,5 @@ --- :build: :major: 1 -:minor: 1 +:minor: 2 :patch: 0 diff --git a/rantly.gemspec b/rantly.gemspec index 294663c..7f73ef6 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.1.0" + s.version = "1.2.0" s.license = "MIT" s.require_paths = ["lib"] s.authors = ["Ana María Martínez Gómez", "Howard Yeh", "Anthony Bargnesi", "Eric Bischoff"]