Skip to content

Commit

Permalink
bump arbitrary_derive to 1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nagisa committed Jan 23, 2023
1 parent c54021c commit 98044ba
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
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.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 <fitzgen@gmail.com>",
Expand All @@ -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)]`.
Expand Down
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <fitzgen@gmail.com>",
Expand Down

0 comments on commit 98044ba

Please sign in to comment.