From 716088682615c33ca070b65e17a65b85c1c4b4a4 Mon Sep 17 00:00:00 2001 From: Dinu Blanovschi Date: Sat, 3 Feb 2024 16:38:07 +0100 Subject: [PATCH] feat: bump 0.5.0 --- CHANGELOG.md | 4 ++++ Cargo.lock | 6 +++--- Cargo.toml | 14 +++++++++++--- cargo-difftests-core/Cargo.toml | 9 +++++---- cargo-difftests-testclient/Cargo.toml | 9 +++++---- cargo-difftests/Cargo.toml | 12 ++++++------ 6 files changed, 34 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e92da31..8b4e738 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Unreleased +# 0.5.0 + +Released: 2023-02-03 + ## Major features ### Dirty test rerunners diff --git a/Cargo.lock b/Cargo.lock index dd8dfb5..73cee99 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -115,7 +115,7 @@ checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" [[package]] name = "cargo-difftests" -version = "0.4.0" +version = "0.5.0" dependencies = [ "anyhow", "cargo-difftests-core", @@ -138,7 +138,7 @@ dependencies = [ [[package]] name = "cargo-difftests-core" -version = "0.4.0" +version = "0.5.0" dependencies = [ "serde", "serde_json", @@ -154,7 +154,7 @@ dependencies = [ [[package]] name = "cargo-difftests-testclient" -version = "0.4.0" +version = "0.5.0" dependencies = [ "cargo-difftests-core", "libc", diff --git a/Cargo.toml b/Cargo.toml index 20ba59b..f42a96e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,10 +7,18 @@ members = [ "sample/cargo-difftests-sample-project", ] +[workspace.package] +version = "0.5.0" +edition = "2021" +description = "A selective regression testing tool for Rust projects" +license = "Apache-2.0" +readme = "README.md" +repository = "https://github.com/dnbln/cargo-difftests" + [workspace.dependencies] -cargo-difftests = { path = "cargo-difftests", version = "0.4.0" } -cargo-difftests-core = { path = "cargo-difftests-core", version = "0.4.0" } -cargo-difftests-testclient = { path = "cargo-difftests-testclient", version = "0.4.0" } +cargo-difftests = { path = "cargo-difftests", version = "0.5.0" } +cargo-difftests-core = { path = "cargo-difftests-core", version = "0.5.0" } +cargo-difftests-testclient = { path = "cargo-difftests-testclient", version = "0.5.0" } anyhow = "1.0.66" chrono = { version = "0.4.23", features = ["serde"] } diff --git a/cargo-difftests-core/Cargo.toml b/cargo-difftests-core/Cargo.toml index 6ef5cb2..d818091 100644 --- a/cargo-difftests-core/Cargo.toml +++ b/cargo-difftests-core/Cargo.toml @@ -1,10 +1,11 @@ [package] name = "cargo-difftests-core" -version = "0.4.0" -edition = "2021" description = "cargo-difftests: core library" -license = "Apache-2.0" -repository = "https://github.com/dnbln/cargo-difftests" +version.workspace = true +edition.workspace = true +license.workspace = true +readme.workspace = true +repository.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/cargo-difftests-testclient/Cargo.toml b/cargo-difftests-testclient/Cargo.toml index ceaf093..a43c0ef 100644 --- a/cargo-difftests-testclient/Cargo.toml +++ b/cargo-difftests-testclient/Cargo.toml @@ -1,10 +1,11 @@ [package] name = "cargo-difftests-testclient" -version = "0.4.0" -edition = "2021" description = "cargo-difftests: test client library" -license = "Apache-2.0" -repository = "https://github.com/dnbln/cargo-difftests" +version.workspace = true +edition.workspace = true +license.workspace = true +readme.workspace = true +repository.workspace = true [package.metadata.docs.rs] rustc-args = ["--cfg", "docsrs"] diff --git a/cargo-difftests/Cargo.toml b/cargo-difftests/Cargo.toml index 8670977..4a8fc83 100644 --- a/cargo-difftests/Cargo.toml +++ b/cargo-difftests/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "cargo-difftests" -version = "0.4.0" -edition = "2021" -description = "A tool to find which tests have changed" -license = "Apache-2.0" -readme = "../README.md" -repository = "https://github.com/dnbln/cargo-difftests" +version.workspace = true +edition.workspace = true +description.workspace = true +license.workspace = true +readme.workspace = true +repository.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html