From 227bf6a671d40192f321e54ac2ec2e1ce074ebe1 Mon Sep 17 00:00:00 2001 From: Joakim Akerblom Date: Thu, 9 May 2024 23:57:01 +0200 Subject: [PATCH] Build: Bump version to 0.7.2 --- CHANGELOG.md | 20 +++++++++++++++++++- Cargo.toml | 2 +- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8310b35..2d23533 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,25 @@ # Changelog -[Show diff of unreleased changes on GitHub](https://github.com/jockbert/monkey_test/compare/v0.7.1...main). +[Show diff of unreleased changes on GitHub](https://github.com/jockbert/monkey_test/compare/v0.7.2...main). + +## Release 0.7.2 (2024-05-09) [diff](https://github.com/jockbert/monkey_test/compare/v0.7.1...v0.7.2) + +Minor release only updating documentation and adding missing release details in +this changelog. + +### New features + +* Improve default integer shrinker, so it keeps track of the range of valid + values and only provide skrinked candidates within that range. This is useful + if integer generator is given an explicit range for the examples generated, + then this range is also used in the shrinker, so in case of a failure also + the shrinked candidates are kept witin this given range. + +### Other changes + +* Improve the main documentation with additional examples in the common classes + of properties and add a table of contents. ## Release 0.7.1 (2024-04-13) [diff](https://github.com/jockbert/monkey_test/compare/v0.7.0...v0.7.1) diff --git a/Cargo.toml b/Cargo.toml index 9750de2..e62baa9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "monkey_test" -version = "0.7.1" +version = "0.7.2" edition = "2021" license = "MIT" homepage = "https://github.com/jockbert/monkey_test"