From 63ef67c71ff050b473d2137fd3abce6115d0216b Mon Sep 17 00:00:00 2001 From: Matthew Russo Date: Fri, 10 Nov 2023 09:00:18 -0800 Subject: [PATCH] [Release] 1.4.0 : adds missing changelog entries (#397) --- proptest-derive/CHANGELOG.md | 4 ++++ proptest-state-machine/CHANGELOG.md | 5 +++++ proptest/CHANGELOG.md | 14 +++++++++++++- proptest/Cargo.toml | 2 +- 4 files changed, 23 insertions(+), 2 deletions(-) diff --git a/proptest-derive/CHANGELOG.md b/proptest-derive/CHANGELOG.md index 70b1f6d7..445c3ad0 100644 --- a/proptest-derive/CHANGELOG.md +++ b/proptest-derive/CHANGELOG.md @@ -4,6 +4,10 @@ ### Other Notes +- `compiletest_rs` updated from 0.9 to 0.10 + +### Other Notes + - Upgraded `syn`, `quote`, and `proc-macro2` to 1.0 ## 0.3.0 diff --git a/proptest-state-machine/CHANGELOG.md b/proptest-state-machine/CHANGELOG.md index c8cbb4ff..5f962b39 100644 --- a/proptest-state-machine/CHANGELOG.md +++ b/proptest-state-machine/CHANGELOG.md @@ -1,5 +1,10 @@ ## Unreleased +### Other Notes + +- `message-io` updated from 0.17 to 0.18 + ### Bug Fixes +- Fixed state-machine macro's inability to handle missing config - Fixed logging of state machine transitions to be enabled when verbose config is >= 1. The "std" feature is added to proptest-state-machine as a default feature that allows to switch the logging off in non-std env. diff --git a/proptest/CHANGELOG.md b/proptest/CHANGELOG.md index 0dca677d..e972089d 100644 --- a/proptest/CHANGELOG.md +++ b/proptest/CHANGELOG.md @@ -1,8 +1,20 @@ ## Unreleased +## 1.4.0 + +### Breaking Changes + +- The minimum supported Rust version has been increased to 1.65.0. + +### Other Notes + +- `regex-syntax` updated from 0.7 to 0.8 +- Fixed new clippies +- Fixed nightly build where Generator was renamed to Coroutine + ## 1.3.1 -## Other Notes +### Other Notes - `bit-set` updated from 0.5.0 to 0.5.2 to ensure minimum compatible version with bit-vec 0.6 diff --git a/proptest/Cargo.toml b/proptest/Cargo.toml index 0dacc987..0239898b 100644 --- a/proptest/Cargo.toml +++ b/proptest/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "proptest" -version = "1.3.1" +version = "1.4.0" authors = ["Jason Lingle"] license = "MIT OR Apache-2.0" readme = "README.md"