Skip to content

Commit 4732f4f

Browse files
committed
Bump version
1 parent 9bcb7e6 commit 4732f4f

File tree

10 files changed

+18
-12
lines changed

10 files changed

+18
-12
lines changed

CHANGELOG.md

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

3+
## 7.0.0
4+
5+
- Improve documentation ([#461](https://github.com/trailofbits/test-fuzz/pull/461))
6+
- BREAKING CHANGE: Store corpora, crashes, hangs, and work queue as structs rather than tuples. This change could cause users' existing corpora, etc. to no longer work. Hence, we are considering this a breaking change. However, future similar format changes may not be considered breaking. This change is to facilitate [PR #476](https://github.com/trailofbits/test-fuzz/pull/476). ([#480](https://github.com/trailofbits/test-fuzz/pull/480))
7+
- Support [Serde field attributes](https://serde.rs/field-attrs.html) on function arguments ([#476](https://github.com/trailofbits/test-fuzz/pull/476) and [#485](https://github.com/trailofbits/test-fuzz/pull/485))
8+
39
## 6.0.0
410

511
- BREAKING CHANGE: No longer pass `-D` to `cargo afl fuzz`. This is a breaking change for users of `cargo-afl` version [0.15.4](https://github.com/rust-fuzz/afl.rs/blob/master/CHANGES.md#0154) (or earlier), which relies on AFL++ version [4.10.c](https://github.com/AFLplusplus/AFLplusplus/blob/stable/docs/Changelog.md#version-410c-release) (or earlier). As of version [4.20.c](https://github.com/AFLplusplus/AFLplusplus/blob/stable/docs/Changelog.md#version-420c-release), AFL++ ignores `-D`. ([#434](https://github.com/trailofbits/test-fuzz/pull/434))

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ walkdir = "2.5"
5858
xshell = "0.2"
5959

6060
# smoelius: Internal packages
61-
internal = { path = "internal", package = "test-fuzz-internal", version = "=6.0.0" }
62-
runtime = { path = "runtime", package = "test-fuzz-runtime", version = "=6.0.0" }
63-
test-fuzz = { path = "test-fuzz", version = "=6.0.0" }
64-
test-fuzz-macro = { path = "macro", version = "=6.0.0" }
61+
internal = { path = "internal", package = "test-fuzz-internal", version = "=7.0.0" }
62+
runtime = { path = "runtime", package = "test-fuzz-runtime", version = "=7.0.0" }
63+
test-fuzz = { path = "test-fuzz", version = "=7.0.0" }
64+
test-fuzz-macro = { path = "macro", version = "=7.0.0" }
6565
testing = { path = "testing", package = "test-fuzz-testing" }
6666

6767
[workspace.lints.rust.unexpected_cfgs]

cargo-test-fuzz/Cargo.toml

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

66
description = "cargo-test-fuzz"

examples/Cargo.toml

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

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 = "6.0.0"
3+
version = "7.0.0"
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 = "6.0.0"
3+
version = "7.0.0"
44
edition = "2021"
55

66
description = "test-fuzz-macro"

runtime/Cargo.toml

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

66
description = "test-fuzz-runtime"

test-fuzz/Cargo.toml

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

66
description = "To make fuzzing Rust easy"

testing/Cargo.toml

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

third-party/Cargo.toml

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

0 commit comments

Comments
 (0)