Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius committed Oct 6, 2023
1 parent b2ace02 commit aa460dd
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 16 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 4.0.2

- Significant refactoring regarding Serde format handling and Cargo feature use, but users should experience no differences ([#284](https://github.com/trailofbits/test-fuzz/pull/284))
- Correct error message when `cargo-afl` cannot be found ([#286](https://github.com/trailofbits/test-fuzz/pull/286))

## 4.0.1

- Remove last reference to `syn` 1.0 ([#244](https://github.com/trailofbits/test-fuzz/pull/244))
Expand Down
6 changes: 3 additions & 3 deletions 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 = "4.0.1"
version = "4.0.2"
edition = "2021"

description = "cargo-test-fuzz"
Expand Down Expand Up @@ -32,8 +32,8 @@ serde = { version = "1.0", features = ["derive"] }
strum_macros = "0.25"
subprocess = "0.2"

internal = { path = "../internal", package = "test-fuzz-internal", version = "=4.0.1" }
test-fuzz = { path = "../test-fuzz", version = "=4.0.1" }
internal = { path = "../internal", package = "test-fuzz-internal", version = "=4.0.2" }
test-fuzz = { path = "../test-fuzz", version = "=4.0.2" }

[dev-dependencies]
assert_cmd = "2.0"
Expand Down
4 changes: 2 additions & 2 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-fuzz-examples"
version = "4.0.1"
version = "4.0.2"
edition = "2021"
publish = false

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

[dependencies]
serde = { version = "1.0", features = ["rc"] }
test-fuzz = { path = "../test-fuzz", version = "=4.0.1" }
test-fuzz = { path = "../test-fuzz", version = "=4.0.2" }

[dev-dependencies]
once_cell = "1.18"
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 = "4.0.1"
version = "4.0.2"
edition = "2021"

description = "test-fuzz-internal"
Expand Down
4 changes: 2 additions & 2 deletions macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-fuzz-macro"
version = "4.0.1"
version = "4.0.2"
edition = "2021"

description = "test-fuzz-macro"
Expand All @@ -23,7 +23,7 @@ subprocess = "0.2"
syn = { version = "2.0", features = ["full", "parsing", "visit", "visit-mut"] }
toolchain_find = "0.4"

internal = { path = "../internal", package = "test-fuzz-internal", version = "=4.0.1", optional = true }
internal = { path = "../internal", package = "test-fuzz-internal", version = "=4.0.2", optional = true }

[features]
__auto_concretize = ["internal"]
Expand Down
4 changes: 2 additions & 2 deletions runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-fuzz-runtime"
version = "4.0.1"
version = "4.0.2"
edition = "2021"

description = "test-fuzz-runtime"
Expand All @@ -15,4 +15,4 @@ num-traits = "0.2"
serde = { version = "1.0", features = ["derive"] }
sha-1 = "0.10"

internal = { path = "../internal", package = "test-fuzz-internal", version = "=4.0.1" }
internal = { path = "../internal", package = "test-fuzz-internal", version = "=4.0.2" }
8 changes: 4 additions & 4 deletions test-fuzz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-fuzz"
version = "4.0.1"
version = "4.0.2"
edition = "2021"

description = "To make fuzzing Rust easy"
Expand All @@ -13,9 +13,9 @@ repository = "https://github.com/trailofbits/test-fuzz"
afl = { version = "0.14", optional = true }
serde = "1.0"

internal = { path = "../internal", package = "test-fuzz-internal", version = "=4.0.1" }
runtime = { path = "../runtime", package = "test-fuzz-runtime", version = "=4.0.1" }
test-fuzz-macro = { path = "../macro", version = "=4.0.1" }
internal = { path = "../internal", package = "test-fuzz-internal", version = "=4.0.2" }
runtime = { path = "../runtime", package = "test-fuzz-runtime", version = "=4.0.2" }
test-fuzz-macro = { path = "../macro", version = "=4.0.2" }

[dev-dependencies]
assert_cmd = "2.0"
Expand Down
4 changes: 2 additions & 2 deletions testing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-fuzz-testing"
version = "4.0.1"
version = "4.0.2"
edition = "2021"
publish = false

Expand All @@ -16,4 +16,4 @@ once_cell = "1.18"
retry = "2.0"
subprocess = "0.2"

internal = { path = "../internal", package = "test-fuzz-internal", version = "=4.0.1" }
internal = { path = "../internal", package = "test-fuzz-internal", version = "=4.0.2" }

0 comments on commit aa460dd

Please sign in to comment.