Skip to content

Commit

Permalink
Bump to version 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fitzgen committed Oct 11, 2023
1 parent c1fa740 commit b3e8342
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,19 @@ Released YYYY-MM-DD.

--------------------------------------------------------------------------------

## 1.3.1

Released 2023-10-11.

### Fixed

* Fixed an issue with generating collections of collections in
`arbitrary_take_rest` where `<Vec<Vec<u8>>>::arbitrary_take_rest` would never
generate `vec![vec![]]` for example. See
[#159](https://github.com/rust-fuzz/arbitrary/pull/159) for details.

--------------------------------------------------------------------------------

## 1.3.0

Released 2023-03-13.
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "arbitrary"
version = "1.3.0" # Make sure this matches the derive crate version (not including the patch version)
version = "1.3.1" # Make sure this matches the derive crate version (not including the patch version)
authors = [
"The Rust-Fuzz Project Developers",
"Nick Fitzgerald <[email protected]>",
Expand All @@ -20,7 +20,7 @@ documentation = "https://docs.rs/arbitrary/"
rust-version = "1.63.0"

[dependencies]
derive_arbitrary = { version = "1.3.0", path = "./derive", optional = true }
derive_arbitrary = { version = "1.3.1", path = "./derive", optional = true }

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

0 comments on commit b3e8342

Please sign in to comment.