diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b0799f..2d4bb72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,16 @@ Released YYYY-MM-DD. -------------------------------------------------------------------------------- +## 1.2.3 + +Released 2023-01-20. + +### Fixed + +* The `derive(Arbitrary)` will now annotate the generated `impl`s with a `#[automatically_derived]` + attribute to indicate to e.g. clippy that lints should not fire for the code within the derived + implementation. + ## 1.2.2 Released 2023-01-03. diff --git a/Cargo.toml b/Cargo.toml index d962f0d..ed72b4c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arbitrary" -version = "1.2.2" # Make sure this matches the derive crate version (not including the patch version) +version = "1.2.3" # 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.2", path = "./derive", optional = true } +derive_arbitrary = { version = "1.2.3", 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 f1c8b5c..99f5538 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "derive_arbitrary" -version = "1.2.2" # Make sure it matches the version of the arbitrary crate itself (not including the patch version) +version = "1.2.3" # Make sure it matches the version of the arbitrary crate itself (not including the patch version) authors = [ "The Rust-Fuzz Project Developers", "Nick Fitzgerald ",