Skip to content

Commit 0334123

Browse files
authored
chore: bump all crates to v2.0.0 (#121)
1 parent f8a7e23 commit 0334123

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
TAG_VERSION="${GITHUB_REF#refs/tags/v}"
7575
7676
# Check each tool's Cargo.toml version
77-
for tool in move-mutation-test move-mutator move-spec-test; do
77+
for tool in move-mutation-test move-mutator move-spec-test mutator-common; do
7878
CARGO_VERSION=$(grep "^version" $tool/Cargo.toml | head -1 | cut -d'"' -f2)
7979
if [ "$CARGO_VERSION" != "$TAG_VERSION" ]; then
8080
echo "Error: Version mismatch for $tool!"

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

move-mutation-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "move-mutation-test"
3-
version = "1.0.0"
3+
version = "2.0.0"
44
description = "Move mutation unit testing tool"
55
authors.workspace = true
66
edition.workspace = true

move-mutator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "move-mutator"
3-
version = "1.0.0"
3+
version = "2.0.0"
44
description = "Move mutation tool"
55
authors.workspace = true
66
edition.workspace = true

move-spec-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "move-spec-test"
3-
version = "1.0.0"
3+
version = "2.0.0"
44
description = "Move specification testing tool"
55
authors.workspace = true
66
edition.workspace = true

mutator-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mutator-common"
3-
version = "1.0.0"
3+
version = "2.0.0"
44
description = "Common set of tools for mutator applications"
55
authors.workspace = true
66
edition.workspace = true

0 commit comments

Comments
 (0)