Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <fitzgen@gmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <fitzgen@gmail.com>",
Expand Down