Skip to content

Commit dc22fde

Browse files
authored
Merge pull request #230 from fitzgen/bump-to-1.4.2
Bump to version 1.4.2
2 parents 688b494 + 2032403 commit dc22fde

File tree

3 files changed

+31
-2
lines changed

3 files changed

+31
-2
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,35 @@ Released YYYY-MM-DD.
2828

2929
--------------------------------------------------------------------------------
3030

31+
## 1.4.2
32+
33+
Released 2025-08-13.
34+
35+
### Added
36+
37+
* Added formal MSRV policy: "We reserve the right to increment the MSRV on minor
38+
releases, however we will strive to only do it deliberately and for good
39+
reasons." The current MSRV is 1.63.0.
40+
* Added an `Arbitrary` implementation for `core::cmp::Reverse`.
41+
42+
### Changed
43+
44+
* Landed a handful of changes to the code generated by `#[derive(Arbitrary)]`
45+
that speed up compilation.
46+
47+
### Fixed
48+
49+
* Better documented bias and behavior when running out of entropy, fixed some
50+
outdated and incorrect docs related to this.
51+
52+
--------------------------------------------------------------------------------
53+
54+
## 1.4.1
55+
56+
Released 2024-11-05.
57+
58+
--------------------------------------------------------------------------------
59+
3160
## 1.4.0
3261

3362
Released 2024-10-30.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "arbitrary"
3-
version = "1.4.1" # Make sure this matches the derive crate version (not including the patch version)
3+
version = "1.4.2" # Make sure this matches the derive crate version (not including the patch version)
44
authors = [
55
"The Rust-Fuzz Project Developers",
66
"Nick Fitzgerald <fitzgen@gmail.com>",

derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "derive_arbitrary"
3-
version = "1.4.1" # Make sure it matches the version of the arbitrary crate itself (not including the patch version)
3+
version = "1.4.2" # Make sure it matches the version of the arbitrary crate itself (not including the patch version)
44
authors = [
55
"The Rust-Fuzz Project Developers",
66
"Nick Fitzgerald <fitzgen@gmail.com>",

0 commit comments

Comments
 (0)