Skip to content

Commit b3e8342

Browse files
committed
Bump to version 1.3.1
1 parent c1fa740 commit b3e8342

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

CHANGELOG.md

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

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

31+
## 1.3.1
32+
33+
Released 2023-10-11.
34+
35+
### Fixed
36+
37+
* Fixed an issue with generating collections of collections in
38+
`arbitrary_take_rest` where `<Vec<Vec<u8>>>::arbitrary_take_rest` would never
39+
generate `vec![vec![]]` for example. See
40+
[#159](https://github.com/rust-fuzz/arbitrary/pull/159) for details.
41+
42+
--------------------------------------------------------------------------------
43+
3144
## 1.3.0
3245

3346
Released 2023-03-13.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "arbitrary"
3-
version = "1.3.0" # Make sure this matches the derive crate version (not including the patch version)
3+
version = "1.3.1" # Make sure this matches the derive crate version (not including the patch version)
44
authors = [
55
"The Rust-Fuzz Project Developers",
66
"Nick Fitzgerald <[email protected]>",
@@ -20,7 +20,7 @@ documentation = "https://docs.rs/arbitrary/"
2020
rust-version = "1.63.0"
2121

2222
[dependencies]
23-
derive_arbitrary = { version = "1.3.0", path = "./derive", optional = true }
23+
derive_arbitrary = { version = "1.3.1", path = "./derive", optional = true }
2424

2525
[features]
2626
# Turn this feature on to enable support for `#[derive(Arbitrary)]`.

0 commit comments

Comments
 (0)