Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius committed Jul 12, 2024
1 parent 1664e34 commit 81cf2e9
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 17 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
Expand Down
6 changes: 3 additions & 3 deletions cargo-test-fuzz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-test-fuzz"
version = "5.2.1"
version = "5.2.2"
edition = "2021"

description = "cargo-test-fuzz"
Expand Down Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-fuzz-examples"
version = "5.2.1"
version = "5.2.2"
edition = "2021"
publish = false

Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion internal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-fuzz-internal"
version = "5.2.1"
version = "5.2.2"
edition = "2021"

description = "test-fuzz-internal"
Expand Down
2 changes: 1 addition & 1 deletion macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-fuzz-macro"
version = "5.2.1"
version = "5.2.2"
edition = "2021"

description = "test-fuzz-macro"
Expand Down
4 changes: 2 additions & 2 deletions runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-fuzz-runtime"
version = "5.2.1"
version = "5.2.2"
edition = "2021"

description = "test-fuzz-runtime"
Expand All @@ -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
8 changes: 4 additions & 4 deletions test-fuzz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-fuzz"
version = "5.2.1"
version = "5.2.2"
edition = "2021"

description = "To make fuzzing Rust easy"
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions testing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-fuzz-testing"
version = "5.2.1"
version = "5.2.2"
edition = "2021"
publish = false

Expand All @@ -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
4 changes: 2 additions & 2 deletions third-party/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "third-party"
version = "5.2.1"
version = "5.2.2"
edition = "2021"
publish = false

Expand All @@ -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]
Expand Down

0 comments on commit 81cf2e9

Please sign in to comment.