Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius committed Nov 22, 2024
1 parent b03c5f6 commit 580617c
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 7.0.1

- Update `cargo_metadata` to version `0.19` ([#487](https://github.com/trailofbits/test-fuzz/pull/487))

## 7.0.0

- Improve documentation ([#461](https://github.com/trailofbits/test-fuzz/pull/461))
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 = "=7.0.0" }
runtime = { path = "runtime", package = "test-fuzz-runtime", version = "=7.0.0" }
test-fuzz = { path = "test-fuzz", version = "=7.0.0" }
test-fuzz-macro = { path = "macro", version = "=7.0.0" }
internal = { path = "internal", package = "test-fuzz-internal", version = "=7.0.1" }
runtime = { path = "runtime", package = "test-fuzz-runtime", version = "=7.0.1" }
test-fuzz = { path = "test-fuzz", version = "=7.0.1" }
test-fuzz-macro = { path = "macro", version = "=7.0.1" }
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 = "7.0.0"
version = "7.0.1"
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 = "7.0.0"
version = "7.0.1"
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 = "7.0.0"
version = "7.0.1"
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 = "7.0.0"
version = "7.0.1"
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 = "7.0.0"
version = "7.0.1"
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 = "7.0.0"
version = "7.0.1"
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 = "7.0.0"
version = "7.0.1"
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 = "7.0.0"
version = "7.0.1"
edition = "2021"
publish = false

Expand Down

0 comments on commit 580617c

Please sign in to comment.