From d425599c8dd6742f160a6d545f5d184a10a07a70 Mon Sep 17 00:00:00 2001 From: Samuel Moelius Date: Fri, 12 Jul 2024 14:57:16 +0000 Subject: [PATCH] Bump version --- CHANGELOG.md | 4 ++++ cargo-test-fuzz/Cargo.toml | 6 +++--- examples/Cargo.toml | 4 ++-- internal/Cargo.toml | 2 +- macro/Cargo.toml | 2 +- runtime/Cargo.toml | 4 ++-- test-fuzz/Cargo.toml | 8 ++++---- testing/Cargo.toml | 4 ++-- third-party/Cargo.toml | 4 ++-- 9 files changed, 21 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9587b9c8..8e477649 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 5.2.2 + +- Account for changes to `cargo afl --version` ([#422](https://github.com/trailofbits/test-fuzz/pull/422)) + ## 5.2.1 - Eliminate unnecessary dependence on `paste` ([#398](https://github.com/trailofbits/test-fuzz/pull/398)) diff --git a/cargo-test-fuzz/Cargo.toml b/cargo-test-fuzz/Cargo.toml index 562ad718..f2464a0d 100644 --- a/cargo-test-fuzz/Cargo.toml +++ b/cargo-test-fuzz/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-test-fuzz" -version = "5.2.1" +version = "5.2.2" edition = "2021" description = "cargo-test-fuzz" @@ -36,8 +36,8 @@ serde = { version = "1.0", features = ["derive"] } strum_macros = "0.26" subprocess = "0.2" -internal = { path = "../internal", package = "test-fuzz-internal", version = "=5.2.1" } -test-fuzz = { path = "../test-fuzz", version = "=5.2.1" } +internal = { path = "../internal", package = "test-fuzz-internal", version = "=5.2.2" } +test-fuzz = { path = "../test-fuzz", version = "=5.2.2" } [dev-dependencies] predicates = "3.1" diff --git a/examples/Cargo.toml b/examples/Cargo.toml index b5a82c98..022e811f 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-fuzz-examples" -version = "5.2.1" +version = "5.2.2" edition = "2021" publish = false @@ -10,7 +10,7 @@ path = "src/main.rs" [dependencies] serde = { version = "1.0", features = ["rc"] } -test-fuzz = { path = "../test-fuzz", version = "=5.2.1" } +test-fuzz = { path = "../test-fuzz", version = "=5.2.2" } [dev-dependencies] once_cell = "1.19" diff --git a/internal/Cargo.toml b/internal/Cargo.toml index 7454834a..32e5dea0 100644 --- a/internal/Cargo.toml +++ b/internal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-fuzz-internal" -version = "5.2.1" +version = "5.2.2" edition = "2021" description = "test-fuzz-internal" diff --git a/macro/Cargo.toml b/macro/Cargo.toml index 6349b894..5846657b 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-fuzz-macro" -version = "5.2.1" +version = "5.2.2" edition = "2021" description = "test-fuzz-macro" diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index cde6b8fd..c1608d79 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-fuzz-runtime" -version = "5.2.1" +version = "5.2.2" edition = "2021" description = "test-fuzz-runtime" @@ -15,7 +15,7 @@ num-traits = "0.2" serde = { version = "1.0", features = ["derive"] } sha1 = "0.10" -internal = { path = "../internal", package = "test-fuzz-internal", version = "=5.2.1" } +internal = { path = "../internal", package = "test-fuzz-internal", version = "=5.2.2" } [lints] workspace = true diff --git a/test-fuzz/Cargo.toml b/test-fuzz/Cargo.toml index e822e0a3..1fded075 100644 --- a/test-fuzz/Cargo.toml +++ b/test-fuzz/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-fuzz" -version = "5.2.1" +version = "5.2.2" edition = "2021" description = "To make fuzzing Rust easy" @@ -14,9 +14,9 @@ afl = { version = "0.15", optional = true } cast_checks = { version = "0.1", optional = true } serde = "1.0" -internal = { path = "../internal", package = "test-fuzz-internal", version = "=5.2.1" } -runtime = { path = "../runtime", package = "test-fuzz-runtime", version = "=5.2.1" } -test-fuzz-macro = { path = "../macro", version = "=5.2.1" } +internal = { path = "../internal", package = "test-fuzz-internal", version = "=5.2.2" } +runtime = { path = "../runtime", package = "test-fuzz-runtime", version = "=5.2.2" } +test-fuzz-macro = { path = "../macro", version = "=5.2.2" } [dev-dependencies] assert_cmd = "2.0" diff --git a/testing/Cargo.toml b/testing/Cargo.toml index 4914e681..40dde236 100644 --- a/testing/Cargo.toml +++ b/testing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-fuzz-testing" -version = "5.2.1" +version = "5.2.2" edition = "2021" publish = false @@ -17,7 +17,7 @@ retry = "2.0" strip-ansi-escapes = "0.2" subprocess = "0.2" -internal = { path = "../internal", package = "test-fuzz-internal", version = "=5.2.1" } +internal = { path = "../internal", package = "test-fuzz-internal", version = "=5.2.2" } [lints] workspace = true diff --git a/third-party/Cargo.toml b/third-party/Cargo.toml index f2e39669..07ff72d5 100644 --- a/third-party/Cargo.toml +++ b/third-party/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "third-party" -version = "5.2.1" +version = "5.2.2" edition = "2021" publish = false @@ -21,7 +21,7 @@ tempfile = "3.10" # smoelius: `test-fuzz` serves as a convenient mechanism for ci.yml to specify the serde format. # Beyond that, it is not really needed by the `third-party` package. -test-fuzz = { path = "../test-fuzz", version = "=5.2.1" } +test-fuzz = { path = "../test-fuzz", version = "=5.2.2" } testing = { path = "../testing", package = "test-fuzz-testing" } [features]