Skip to content

Commit

Permalink
feat: bump 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dnbln committed Feb 3, 2024
1 parent dfc5ee4 commit 7160886
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 20 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Unreleased

# 0.5.0

Released: 2023-02-03

## Major features

### Dirty test rerunners
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 11 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
9 changes: 5 additions & 4 deletions cargo-difftests-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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

Expand Down
9 changes: 5 additions & 4 deletions cargo-difftests-testclient/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down
12 changes: 6 additions & 6 deletions cargo-difftests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 7160886

Please sign in to comment.