From b3e8342ea8dc8437aff3d3a1f5b95b7c02bf57f5 Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Wed, 11 Oct 2023 12:43:09 -0700 Subject: [PATCH] Bump to version 1.3.1 --- CHANGELOG.md | 13 +++++++++++++ Cargo.toml | 4 ++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f497c29..e49486d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 `>>::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. diff --git a/Cargo.toml b/Cargo.toml index 0588ce8..14c8150 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 ", @@ -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)]`.