Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius committed Aug 21, 2024
1 parent 1fbefe2 commit 1654e00
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 12 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## 6.0.0

- 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))
- Pass `-c-` to `cargo afl fuzz` ([6e6c955](https://github.com/trailofbits/test-fuzz/pull/414/commits/6e6c9554628a7e65f6c33800b7826e03050f47bf))
- Update `option_set` to version `0.3` ([#439](https://github.com/trailofbits/test-fuzz/pull/439))
- BREAKING CHANGE: Remove deprecated options `--concretize`, `--concretize-impl`, and `--only-concretizations` ([#443](https://github.com/trailofbits/test-fuzz/pull/443) and [#449](https://github.com/trailofbits/test-fuzz/pull/449))
- BREAKING CHANGE: Remove deprecated CBOR formats ([#445](https://github.com/trailofbits/test-fuzz/pull/445))
- BREAKING CHANGE: Make `self_ty_in_mod_name` the default ([#444](https://github.com/trailofbits/test-fuzz/pull/444))
- Shorten `--pretty-print` to `--pretty`, but keep the former as an alias ([#448](https://github.com/trailofbits/test-fuzz/pull/448))
- BREAKING CHANGE: Make `--no-instrumentation` the default. The option remains for now, but is ignored. ([#447](https://github.com/trailofbits/test-fuzz/pull/447))

## 5.2.2

- Account for changes to `cargo afl --version` ([#422](https://github.com/trailofbits/test-fuzz/pull/422))
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ walkdir = "2.5"
xshell = "0.2"

# smoelius: Internal packages
internal = { path = "internal", package = "test-fuzz-internal", version = "=5.2.2" }
runtime = { path = "runtime", package = "test-fuzz-runtime", version = "=5.2.2" }
test-fuzz = { path = "test-fuzz", version = "=5.2.2" }
test-fuzz-macro = { path = "macro", version = "=5.2.2" }
internal = { path = "internal", package = "test-fuzz-internal", version = "=6.0.0" }
runtime = { path = "runtime", package = "test-fuzz-runtime", version = "=6.0.0" }
test-fuzz = { path = "test-fuzz", version = "=6.0.0" }
test-fuzz-macro = { path = "macro", version = "=6.0.0" }
testing = { path = "testing", package = "test-fuzz-testing" }

[workspace.lints.rust.unexpected_cfgs]
Expand Down
2 changes: 1 addition & 1 deletion 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.2"
version = "6.0.0"
edition = "2021"

description = "cargo-test-fuzz"
Expand Down
2 changes: 1 addition & 1 deletion 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.2"
version = "6.0.0"
edition = "2021"
publish = false

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.2"
version = "6.0.0"
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.2"
version = "6.0.0"
edition = "2021"

description = "test-fuzz-macro"
Expand Down
2 changes: 1 addition & 1 deletion 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.2"
version = "6.0.0"
edition = "2021"

description = "test-fuzz-runtime"
Expand Down
2 changes: 1 addition & 1 deletion 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.2"
version = "6.0.0"
edition = "2021"

description = "To make fuzzing Rust easy"
Expand Down
2 changes: 1 addition & 1 deletion 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.2"
version = "6.0.0"
edition = "2021"
publish = false

Expand Down
2 changes: 1 addition & 1 deletion 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.2"
version = "6.0.0"
edition = "2021"
publish = false

Expand Down

0 comments on commit 1654e00

Please sign in to comment.