Skip to content

Commit 31befd5

Browse files
chore: sync all workspace crate versions to 0.8.2 (#816)
Unify versioning across redisctl, redisctl-mcp, and redisctl-core using workspace version inheritance. All three crates now derive their version from [workspace.package] in the root Cargo.toml. Previously: redisctl 0.8.2, redisctl-mcp 0.5.0, redisctl-core 0.2.0 Now: all 0.8.2 via version.workspace = true Closes #812
1 parent 815d00d commit 31befd5

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ default-members = [
1515
version = "0.3.1"
1616

1717
[workspace.package]
18-
version = "0.6.2"
18+
version = "0.8.2"
1919
edition = "2024"
2020
rust-version = "1.90"
2121
authors = ["Josh Rotenberg <josh.rotenberg@redis.com>"]

crates/redisctl-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "redisctl-core"
3-
version = "0.2.0"
3+
version.workspace = true
44
edition.workspace = true
55
authors.workspace = true
66
license.workspace = true

crates/redisctl-mcp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "redisctl-mcp"
3-
version = "0.5.0"
3+
version.workspace = true
44
edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
@@ -21,7 +21,7 @@ tower-mcp = { version = "0.7.0", features = ["http", "oauth"] }
2121
schemars = "1.2"
2222

2323
# Internal crates
24-
redisctl-core = { version = "0.2.0", path = "../redisctl-core" }
24+
redisctl-core = { version = "0.8.2", path = "../redisctl-core" }
2525

2626
# External API clients (optional, gated by features)
2727
redis-cloud = { workspace = true, optional = true }

crates/redisctl/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "redisctl"
3-
version = "0.8.2"
3+
version.workspace = true
44
edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
@@ -18,7 +18,7 @@ path = "src/main.rs"
1818

1919

2020
[dependencies]
21-
redisctl-core = { version = "0.2.0", path = "../redisctl-core" }
21+
redisctl-core = { version = "0.8.2", path = "../redisctl-core" }
2222
redis-cloud = { workspace = true, features = ["tower-integration"] }
2323
redis-enterprise = { workspace = true, features = ["tower-integration"] }
2424
files-sdk = { workspace = true, optional = true }

0 commit comments

Comments
 (0)