Skip to content

Commit

Permalink
Sync up arbitrary and derive_arbitrary versions; bump to 1.2.2
Browse files Browse the repository at this point in the history
Fixes #134
  • Loading branch information
fitzgen committed Jan 3, 2023
1 parent 8fabb53 commit 801140c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,24 @@ Released YYYY-MM-DD.

--------------------------------------------------------------------------------

## 1.2.2

Released 2023-01-03.

### Fixed

* Ensured that `arbitrary` and `derive_arbitrary` versions are synced up so that
they don't, e.g., emit generated code that depends on newer versions of
`arbitrary` than the one currently in
use. [#134](https://github.com/rust-fuzz/arbitrary/issues/134)

## 1.2.1

### Fixed

* Fixed an issue where `std::thread_local!` macro invocations in derive code
were not fully prefixed, causing confusing build errors in certain situations.

## 1.2.0

Released 2022-10-20.
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.0" # Make sure this matches the derive crate version (not including the patch version)
version = "1.2.2" # 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.1.6", path = "./derive", optional = true }
derive_arbitrary = { version = "1.2.2", 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.1" # Make sure it matches the version of the arbitrary crate itself (not including the patch version)
version = "1.2.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 <fitzgen@gmail.com>",
Expand Down

0 comments on commit 801140c

Please sign in to comment.