Skip to content

Commit 91e00be

Browse files
chore: release
1 parent bd0e73a commit 91e00be

File tree

7 files changed

+43
-8
lines changed

7 files changed

+43
-8
lines changed

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-core/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.2.0](https://github.com/redis-developer/redisctl/compare/redisctl-core-v0.1.0...redisctl-core-v0.2.0) - 2026-02-26
11+
12+
### Added
13+
14+
- *(cli)* add profile tags for organizing many profiles ([#692](https://github.com/redis-developer/redisctl/pull/692)) ([#705](https://github.com/redis-developer/redisctl/pull/705))
15+
16+
### Other
17+
18+
- add edge case tests for profile config loading ([#696](https://github.com/redis-developer/redisctl/pull/696)) ([#699](https://github.com/redis-developer/redisctl/pull/699))
19+
- add repository and homepage metadata to redisctl-core ([#685](https://github.com/redis-developer/redisctl/pull/685))
20+
1021
## [0.1.0](https://github.com/redis-developer/redisctl/releases/tag/redisctl-core-v0.1.0) - 2026-02-25
1122

1223
### Added

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.1.0"
3+
version = "0.2.0"
44
edition.workspace = true
55
authors.workspace = true
66
license.workspace = true

crates/redisctl-mcp/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.4.0](https://github.com/redis-developer/redisctl/compare/redisctl-mcp-v0.3.0...redisctl-mcp-v0.4.0) - 2026-02-26
11+
12+
### Added
13+
14+
- *(cli)* add profile tags for organizing many profiles ([#692](https://github.com/redis-developer/redisctl/pull/692)) ([#705](https://github.com/redis-developer/redisctl/pull/705))
15+
- *(mcp)* surface credential issues clearly in tool error responses ([#695](https://github.com/redis-developer/redisctl/pull/695)) ([#704](https://github.com/redis-developer/redisctl/pull/704))
16+
- *(mcp)* add profile_create tool for creating profiles via MCP ([#646](https://github.com/redis-developer/redisctl/pull/646)) ([#703](https://github.com/redis-developer/redisctl/pull/703))
17+
- *(cli)* add --connect flag to profile validate for connectivity testing ([#688](https://github.com/redis-developer/redisctl/pull/688))
18+
1019
## [0.3.0](https://github.com/redis-developer/redisctl/compare/redisctl-mcp-v0.2.0...redisctl-mcp-v0.3.0) - 2026-02-25
1120

1221
### 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.3.0"
3+
version = "0.4.0"
44
edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
@@ -21,7 +21,7 @@ tower-mcp = { version = "0.5.0", features = ["http", "oauth"] }
2121
schemars = "1.2"
2222

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

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

crates/redisctl/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.8.1](https://github.com/redis-developer/redisctl/compare/redisctl-v0.8.0...redisctl-v0.8.1) - 2026-02-26
11+
12+
### Added
13+
14+
- *(cli)* add profile tags for organizing many profiles ([#692](https://github.com/redis-developer/redisctl/pull/692)) ([#705](https://github.com/redis-developer/redisctl/pull/705))
15+
- *(cli)* preserve profile settings on credential update ([#694](https://github.com/redis-developer/redisctl/pull/694)) ([#702](https://github.com/redis-developer/redisctl/pull/702))
16+
- *(cli)* add profile current command for shell prompt integration ([#693](https://github.com/redis-developer/redisctl/pull/693)) ([#701](https://github.com/redis-developer/redisctl/pull/701))
17+
- *(cli)* add interactive profile init wizard ([#690](https://github.com/redis-developer/redisctl/pull/690)) ([#698](https://github.com/redis-developer/redisctl/pull/698))
18+
- *(cli)* improve profile help and discoverability ([#663](https://github.com/redis-developer/redisctl/pull/663)) ([#689](https://github.com/redis-developer/redisctl/pull/689))
19+
- *(cli)* add --connect flag to profile validate for connectivity testing ([#688](https://github.com/redis-developer/redisctl/pull/688))
20+
21+
### Fixed
22+
23+
- *(cli)* improve error messages for credential and connection failures ([#691](https://github.com/redis-developer/redisctl/pull/691)) ([#700](https://github.com/redis-developer/redisctl/pull/700))
24+
1025
## [0.8.0](https://github.com/redis-developer/redisctl/compare/redisctl-v0.7.7...redisctl-v0.8.0) - 2026-02-25
1126

1227
### Added

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.0"
3+
version = "0.8.1"
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.1.0", path = "../redisctl-core" }
21+
redisctl-core = { version = "0.2.0", 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)