Skip to content

Commit 81cf2e9

Browse files
committed
Bump version
1 parent 1664e34 commit 81cf2e9

File tree

9 files changed

+21
-17
lines changed

9 files changed

+21
-17
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 5.2.2
4+
5+
- Account for changes to `cargo afl --version` ([#422](https://github.com/trailofbits/test-fuzz/pull/422))
6+
37
## 5.2.1
48

59
- Eliminate unnecessary dependence on `paste` ([#398](https://github.com/trailofbits/test-fuzz/pull/398))

cargo-test-fuzz/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-test-fuzz"
3-
version = "5.2.1"
3+
version = "5.2.2"
44
edition = "2021"
55

66
description = "cargo-test-fuzz"
@@ -36,8 +36,8 @@ serde = { version = "1.0", features = ["derive"] }
3636
strum_macros = "0.26"
3737
subprocess = "0.2"
3838

39-
internal = { path = "../internal", package = "test-fuzz-internal", version = "=5.2.1" }
40-
test-fuzz = { path = "../test-fuzz", version = "=5.2.1" }
39+
internal = { path = "../internal", package = "test-fuzz-internal", version = "=5.2.2" }
40+
test-fuzz = { path = "../test-fuzz", version = "=5.2.2" }
4141

4242
[dev-dependencies]
4343
predicates = "3.1"

examples/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test-fuzz-examples"
3-
version = "5.2.1"
3+
version = "5.2.2"
44
edition = "2021"
55
publish = false
66

@@ -10,7 +10,7 @@ path = "src/main.rs"
1010

1111
[dependencies]
1212
serde = { version = "1.0", features = ["rc"] }
13-
test-fuzz = { path = "../test-fuzz", version = "=5.2.1" }
13+
test-fuzz = { path = "../test-fuzz", version = "=5.2.2" }
1414

1515
[dev-dependencies]
1616
once_cell = "1.19"

internal/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test-fuzz-internal"
3-
version = "5.2.1"
3+
version = "5.2.2"
44
edition = "2021"
55

66
description = "test-fuzz-internal"

macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test-fuzz-macro"
3-
version = "5.2.1"
3+
version = "5.2.2"
44
edition = "2021"
55

66
description = "test-fuzz-macro"

runtime/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test-fuzz-runtime"
3-
version = "5.2.1"
3+
version = "5.2.2"
44
edition = "2021"
55

66
description = "test-fuzz-runtime"
@@ -15,7 +15,7 @@ num-traits = "0.2"
1515
serde = { version = "1.0", features = ["derive"] }
1616
sha1 = "0.10"
1717

18-
internal = { path = "../internal", package = "test-fuzz-internal", version = "=5.2.1" }
18+
internal = { path = "../internal", package = "test-fuzz-internal", version = "=5.2.2" }
1919

2020
[lints]
2121
workspace = true

test-fuzz/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test-fuzz"
3-
version = "5.2.1"
3+
version = "5.2.2"
44
edition = "2021"
55

66
description = "To make fuzzing Rust easy"
@@ -14,9 +14,9 @@ afl = { version = "0.15", optional = true }
1414
cast_checks = { version = "0.1", optional = true }
1515
serde = "1.0"
1616

17-
internal = { path = "../internal", package = "test-fuzz-internal", version = "=5.2.1" }
18-
runtime = { path = "../runtime", package = "test-fuzz-runtime", version = "=5.2.1" }
19-
test-fuzz-macro = { path = "../macro", version = "=5.2.1" }
17+
internal = { path = "../internal", package = "test-fuzz-internal", version = "=5.2.2" }
18+
runtime = { path = "../runtime", package = "test-fuzz-runtime", version = "=5.2.2" }
19+
test-fuzz-macro = { path = "../macro", version = "=5.2.2" }
2020

2121
[dev-dependencies]
2222
assert_cmd = "2.0"

testing/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test-fuzz-testing"
3-
version = "5.2.1"
3+
version = "5.2.2"
44
edition = "2021"
55
publish = false
66

@@ -17,7 +17,7 @@ retry = "2.0"
1717
strip-ansi-escapes = "0.2"
1818
subprocess = "0.2"
1919

20-
internal = { path = "../internal", package = "test-fuzz-internal", version = "=5.2.1" }
20+
internal = { path = "../internal", package = "test-fuzz-internal", version = "=5.2.2" }
2121

2222
[lints]
2323
workspace = true

third-party/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "third-party"
3-
version = "5.2.1"
3+
version = "5.2.2"
44
edition = "2021"
55
publish = false
66

@@ -21,7 +21,7 @@ tempfile = "3.10"
2121

2222
# smoelius: `test-fuzz` serves as a convenient mechanism for ci.yml to specify the serde format.
2323
# Beyond that, it is not really needed by the `third-party` package.
24-
test-fuzz = { path = "../test-fuzz", version = "=5.2.1" }
24+
test-fuzz = { path = "../test-fuzz", version = "=5.2.2" }
2525
testing = { path = "../testing", package = "test-fuzz-testing" }
2626

2727
[features]

0 commit comments

Comments
 (0)