-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #135 from fitzgen/sync-crate-versions-bump-to-1.2.2
Sync up `arbitrary` and `derive_arbitrary` versions; bump to 1.2.2
- Loading branch information
Showing
3 changed files
with
21 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>", | ||
|
@@ -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)]`. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>", | ||
|