Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version #489

Merged
merged 1 commit into from
Nov 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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