File tree Expand file tree Collapse file tree 2 files changed +15
-2
lines changed
Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Original file line number Diff line number Diff 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
3346Released 2023-03-13.
Original file line number Diff line number Diff line change 11[package ]
22name = " 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)
44authors = [
55 " The Rust-Fuzz Project Developers" ,
66 " Nick Fitzgerald <[email protected] >" ,
@@ -20,7 +20,7 @@ documentation = "https://docs.rs/arbitrary/"
2020rust-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)]`.
You can’t perform that action at this time.
0 commit comments