Skip to content

Commit 17e0a48

Browse files
committed
Bump version
1 parent 4400dd0 commit 17e0a48

File tree

9 files changed

+24
-17
lines changed

9 files changed

+24
-17
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 5.2.1
4+
5+
- Eliminate unnecessary dependence on `paste` ([#398](https://github.com/trailofbits/test-fuzz/pull/398))
6+
- Update `itertools` to version `0.13` ([#400](https://github.com/trailofbits/test-fuzz/pull/400))
7+
- Update `mio` to version `1.0` ([#406](https://github.com/trailofbits/test-fuzz/pull/406))
8+
- Eliminate duplicate "AFL LLVM runtime was not built..." messages ([#415](https://github.com/trailofbits/test-fuzz/pull/415))
9+
310
## 5.2.0
411

512
- Fix a bug causing incorrect exit codes to be produced ([3ab762f](https://github.com/trailofbits/test-fuzz/commit/3ab762f28ec73ae5692bce43267c539f56107545))

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.0"
3+
version = "5.2.1"
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.0" }
40-
test-fuzz = { path = "../test-fuzz", version = "=5.2.0" }
39+
internal = { path = "../internal", package = "test-fuzz-internal", version = "=5.2.1" }
40+
test-fuzz = { path = "../test-fuzz", version = "=5.2.1" }
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.0"
3+
version = "5.2.1"
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.0" }
13+
test-fuzz = { path = "../test-fuzz", version = "=5.2.1" }
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.0"
3+
version = "5.2.1"
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.0"
3+
version = "5.2.1"
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.0"
3+
version = "5.2.1"
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.0" }
18+
internal = { path = "../internal", package = "test-fuzz-internal", version = "=5.2.1" }
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.0"
3+
version = "5.2.1"
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.0" }
18-
runtime = { path = "../runtime", package = "test-fuzz-runtime", version = "=5.2.0" }
19-
test-fuzz-macro = { path = "../macro", version = "=5.2.0" }
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" }
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.0"
3+
version = "5.2.1"
44
edition = "2021"
55
publish = false
66

@@ -16,7 +16,7 @@ once_cell = "1.19"
1616
retry = "2.0"
1717
subprocess = "0.2"
1818

19-
internal = { path = "../internal", package = "test-fuzz-internal", version = "=5.2.0" }
19+
internal = { path = "../internal", package = "test-fuzz-internal", version = "=5.2.1" }
2020

2121
[lints]
2222
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.0"
3+
version = "5.2.1"
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.0" }
24+
test-fuzz = { path = "../test-fuzz", version = "=5.2.1" }
2525
testing = { path = "../testing", package = "test-fuzz-testing" }
2626

2727
[features]

0 commit comments

Comments
 (0)