Skip to content

Commit 04811f0

Browse files
chore: release
1 parent 160a945 commit 04811f0

7 files changed

Lines changed: 32 additions & 9 deletions

File tree

Cargo.lock

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

crates/redisctl-config/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.3.0](https://github.com/redis-developer/redisctl/compare/redisctl-config-v0.2.1...redisctl-config-v0.3.0) - 2026-01-16
11+
12+
### Added
13+
14+
- *(config)* add database profile type for direct Redis connections ([#566](https://github.com/redis-developer/redisctl/pull/566))
15+
1016
## [0.2.1](https://github.com/redis-developer/redisctl/compare/redisctl-config-v0.2.0...redisctl-config-v0.2.1) - 2025-12-16
1117

1218
### Other

crates/redisctl-config/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-config"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
edition = "2024"
55
authors = ["Josh Rotenberg <josh@redislabs.com>"]
66
license = "MIT OR Apache-2.0"

crates/redisctl-mcp/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.2](https://github.com/redis-developer/redisctl/compare/redisctl-mcp-v0.1.1...redisctl-mcp-v0.1.2) - 2026-01-16
11+
12+
### Added
13+
14+
- *(mcp)* add database tools for direct Redis connections ([#572](https://github.com/redis-developer/redisctl/pull/572))
15+
1016
## [0.1.1](https://github.com/redis-developer/redisctl/compare/redisctl-mcp-v0.1.0...redisctl-mcp-v0.1.1) - 2026-01-14
1117

1218
### Added

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.1.1"
3+
version = "0.1.2"
44
edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
@@ -17,7 +17,7 @@ rmcp = { version = "0.12", features = ["server", "transport-io", "macros"] }
1717
schemars = "0.8"
1818

1919
# Internal crates
20-
redisctl-config = { version = "0.2.1", path = "../redisctl-config" }
20+
redisctl-config = { version = "0.3.0", path = "../redisctl-config" }
2121
redis-cloud = { version = "0.7.5", path = "../redis-cloud" }
2222
redis-enterprise = { version = "0.7.3", path = "../redis-enterprise" }
2323

crates/redisctl/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.7.6](https://github.com/redis-developer/redisctl/compare/redisctl-v0.7.5...redisctl-v0.7.6) - 2026-01-16
11+
12+
### Added
13+
14+
- *(mcp)* add database tools for direct Redis connections ([#572](https://github.com/redis-developer/redisctl/pull/572))
15+
- *(config)* add database profile type for direct Redis connections ([#566](https://github.com/redis-developer/redisctl/pull/566))
16+
17+
### Other
18+
19+
- add assert_cmd tests for MCP commands ([#570](https://github.com/redis-developer/redisctl/pull/570))
20+
1021
## [0.7.5](https://github.com/redis-developer/redisctl/compare/redisctl-v0.7.4...redisctl-v0.7.5) - 2026-01-14
1122

1223
### Added

crates/redisctl/Cargo.toml

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

1919

2020
[dependencies]
21-
redisctl-config = { version = "0.2.1", path = "../redisctl-config" }
21+
redisctl-config = { version = "0.3.0", path = "../redisctl-config" }
2222
redis-cloud = { version = "0.7.5", path = "../redis-cloud", features = ["tower-integration"] }
2323
redis-enterprise = { version = "0.7.3", path = "../redis-enterprise", features = ["tower-integration"] }
24-
redisctl-mcp = { version = "0.1.1", path = "../redisctl-mcp", optional = true }
24+
redisctl-mcp = { version = "0.1.2", path = "../redisctl-mcp", optional = true }
2525
files-sdk = { workspace = true, optional = true }
2626

2727
# CLI dependencies

0 commit comments

Comments
 (0)