From 66e75c5bf57275d400d3ebc746e0cee4f6ff9596 Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Mon, 30 Oct 2023 09:03:14 -0700 Subject: [PATCH] Bump to version 1.3.1 --- CHANGELOG.md | 11 +++++++++++ Cargo.toml | 4 ++-- derive/Cargo.toml | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e49486d..a991cf9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,17 @@ Released YYYY-MM-DD. -------------------------------------------------------------------------------- +## 1.3.2 + +Released 2023-10-30. + +### Added + +* Added `Arbitrary` implementations for `Arc<[T]>` and + `Rc<[T]>`. [#160](https://github.com/rust-fuzz/arbitrary/pull/160) + +-------------------------------------------------------------------------------- + ## 1.3.1 Released 2023-10-11. diff --git a/Cargo.toml b/Cargo.toml index 14c8150..4f7b725 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arbitrary" -version = "1.3.1" # Make sure this matches the derive crate version (not including the patch version) +version = "1.3.2" # 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.1", path = "./derive", optional = true } +derive_arbitrary = { version = "1.3.2", path = "./derive", optional = true } [features] # Turn this feature on to enable support for `#[derive(Arbitrary)]`. diff --git a/derive/Cargo.toml b/derive/Cargo.toml index aa90dbb..4bae30b 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "derive_arbitrary" -version = "1.3.1" # Make sure it matches the version of the arbitrary crate itself (not including the patch version) +version = "1.3.2" # Make sure it matches the version of the arbitrary crate itself (not including the patch version) authors = [ "The Rust-Fuzz Project Developers", "Nick Fitzgerald ",