diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d4bb72..d89f47c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,7 +20,7 @@ Released YYYY-MM-DD. ### Fixed -* (Included in `arbitrary_derive` 1.2.1) Fixed bug in Derive macro around `no_std` path uses [#131](https://github.com/rust-fuzz/arbitrary/pull/131) +* TODO (or remove section if none) ### Security @@ -28,6 +28,22 @@ Released YYYY-MM-DD. -------------------------------------------------------------------------------- +## 1.3.0 + +Released 2023-03-13. + +### Added + +* Added the ability to manually specify derived trait bounds for + `Arbitrary`. See [#138](https://github.com/rust-fuzz/arbitrary/pull/138) for + details. + +### Fixed + +* Fixed minimal versions correctness for `syn`. + +-------------------------------------------------------------------------------- + ## 1.2.3 Released 2023-01-20. diff --git a/Cargo.toml b/Cargo.toml index ed72b4c..a7c9a37 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arbitrary" -version = "1.2.3" # Make sure this matches the derive crate version (not including the patch version) +version = "1.3.0" # 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.2.3", path = "./derive", optional = true } +derive_arbitrary = { version = "1.3.0", 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 08522eb..570519f 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "derive_arbitrary" -version = "1.2.3" # Make sure it matches the version of the arbitrary crate itself (not including the patch version) +version = "1.3.0" # Make sure it matches the version of the arbitrary crate itself (not including the patch version) authors = [ "The Rust-Fuzz Project Developers", "Nick Fitzgerald ",