diff --git a/CHANGELOG.md b/CHANGELOG.md index eb270e6..bce7faf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,35 @@ Released YYYY-MM-DD. -------------------------------------------------------------------------------- +## 1.4.2 + +Released 2025-08-13. + +### Added + +* Added formal MSRV policy: "We reserve the right to increment the MSRV on minor + releases, however we will strive to only do it deliberately and for good + reasons." The current MSRV is 1.63.0. +* Added an `Arbitrary` implementation for `core::cmp::Reverse`. + +### Changed + +* Landed a handful of changes to the code generated by `#[derive(Arbitrary)]` + that speed up compilation. + +### Fixed + +* Better documented bias and behavior when running out of entropy, fixed some + outdated and incorrect docs related to this. + +-------------------------------------------------------------------------------- + +## 1.4.1 + +Released 2024-11-05. + +-------------------------------------------------------------------------------- + ## 1.4.0 Released 2024-10-30. diff --git a/Cargo.toml b/Cargo.toml index 7902497..a060234 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arbitrary" -version = "1.4.1" # Make sure this matches the derive crate version (not including the patch version) +version = "1.4.2" # Make sure this matches the derive crate version (not including the patch version) authors = [ "The Rust-Fuzz Project Developers", "Nick Fitzgerald ", diff --git a/derive/Cargo.toml b/derive/Cargo.toml index c92a941..eae5ab9 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "derive_arbitrary" -version = "1.4.1" # Make sure it matches the version of the arbitrary crate itself (not including the patch version) +version = "1.4.2" # Make sure it matches the version of the arbitrary crate itself (not including the patch version) authors = [ "The Rust-Fuzz Project Developers", "Nick Fitzgerald ",