Skip to content

Commit 0a4f001

Browse files
committed
Bump version
1 parent 86a73b1 commit 0a4f001

File tree

11 files changed

+25
-20
lines changed

11 files changed

+25
-20
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 7.2.5
4+
5+
- Eliminate `cargo-test-fuzz`'s dependence on `test-fuzz` ([#649](https://github.com/trailofbits/test-fuzz/pull/649))
6+
- Upgrade `afl` to version `0.17` ([#651](https://github.com/trailofbits/test-fuzz/pull/651))
7+
38
## 7.2.4
49

510
- Eliminate use of `if_chain` ([#605](https://github.com/trailofbits/test-fuzz/pull/605))

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ walkdir = "2.5"
6060
xshell = "0.2"
6161

6262
# smoelius: Internal packages
63-
internal = { path = "internal", package = "test-fuzz-internal", version = "=7.2.4" }
64-
runtime = { path = "runtime", package = "test-fuzz-runtime", version = "=7.2.4" }
65-
test-fuzz = { path = "test-fuzz", version = "=7.2.4" }
66-
test-fuzz-macro = { path = "macro", version = "=7.2.4" }
63+
internal = { path = "internal", package = "test-fuzz-internal", version = "=7.2.5" }
64+
runtime = { path = "runtime", package = "test-fuzz-runtime", version = "=7.2.5" }
65+
test-fuzz = { path = "test-fuzz", version = "=7.2.5" }
66+
test-fuzz-macro = { path = "macro", version = "=7.2.5" }
6767
testing = { path = "testing", package = "test-fuzz-testing" }
6868

6969
# `serde_combinators` does not sync with `test-fuzz`'s version.

cargo-test-fuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-test-fuzz"
3-
version = "7.2.4"
3+
version = "7.2.5"
44
edition = "2024"
55

66
description = "cargo-test-fuzz"

examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test-fuzz-examples"
3-
version = "7.2.4"
3+
version = "7.2.5"
44
edition = "2024"
55
publish = false
66

internal/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test-fuzz-internal"
3-
version = "7.2.4"
3+
version = "7.2.5"
44
edition = "2024"
55

66
description = "test-fuzz-internal"

macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test-fuzz-macro"
3-
version = "7.2.4"
3+
version = "7.2.5"
44
edition = "2024"
55

66
description = "test-fuzz-macro"

runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test-fuzz-runtime"
3-
version = "7.2.4"
3+
version = "7.2.5"
44
edition = "2024"
55

66
description = "test-fuzz-runtime"

test-fuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test-fuzz"
3-
version = "7.2.4"
3+
version = "7.2.5"
44
edition = "2024"
55

66
description = "To make fuzzing Rust easy"

testing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test-fuzz-testing"
3-
version = "7.2.4"
3+
version = "7.2.5"
44
edition = "2024"
55
publish = false
66

0 commit comments

Comments
 (0)