From 8b1040a5eddb594dd4c0d592757366f33cb3c647 Mon Sep 17 00:00:00 2001 From: Josh Rotenberg Date: Wed, 17 Dec 2025 14:05:53 -0800 Subject: [PATCH] chore: release --- Cargo.lock | 6 +++--- crates/redis-cloud/CHANGELOG.md | 10 ++++++++++ crates/redis-cloud/Cargo.toml | 2 +- crates/redis-enterprise/CHANGELOG.md | 10 ++++++++++ crates/redis-enterprise/Cargo.toml | 2 +- crates/redisctl/CHANGELOG.md | 17 +++++++++++++++++ crates/redisctl/Cargo.toml | 6 +++--- 7 files changed, 45 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1b97949..ed47a77 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2528,7 +2528,7 @@ dependencies = [ [[package]] name = "redis-cloud" -version = "0.7.4" +version = "0.7.5" dependencies = [ "anyhow", "async-trait", @@ -2552,7 +2552,7 @@ dependencies = [ [[package]] name = "redis-enterprise" -version = "0.7.1" +version = "0.7.2" dependencies = [ "anyhow", "async-stream", @@ -2580,7 +2580,7 @@ dependencies = [ [[package]] name = "redisctl" -version = "0.7.2" +version = "0.7.3" dependencies = [ "anyhow", "assert_cmd", diff --git a/crates/redis-cloud/CHANGELOG.md b/crates/redis-cloud/CHANGELOG.md index 9b71b67..0739412 100644 --- a/crates/redis-cloud/CHANGELOG.md +++ b/crates/redis-cloud/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.5](https://github.com/redis-developer/redisctl/compare/redis-cloud-v0.7.4...redis-cloud-v0.7.5) - 2025-12-17 + +### Fixed + +- correct repository URLs broken by PR #500 ([#506](https://github.com/redis-developer/redisctl/pull/506)) + +### Other + +- update documentation URLs to new hosting location ([#509](https://github.com/redis-developer/redisctl/pull/509)) + ## [0.7.4](https://github.com/joshrotenberg/redisctl/compare/redis-cloud-v0.7.3...redis-cloud-v0.7.4) - 2025-12-13 ### Other diff --git a/crates/redis-cloud/Cargo.toml b/crates/redis-cloud/Cargo.toml index ddd77f0..87f0a1f 100644 --- a/crates/redis-cloud/Cargo.toml +++ b/crates/redis-cloud/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "redis-cloud" -version = "0.7.4" +version = "0.7.5" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/redis-enterprise/CHANGELOG.md b/crates/redis-enterprise/CHANGELOG.md index 7ce066c..cbb6095 100644 --- a/crates/redis-enterprise/CHANGELOG.md +++ b/crates/redis-enterprise/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.2](https://github.com/redis-developer/redisctl/compare/redis-enterprise-v0.7.1...redis-enterprise-v0.7.2) - 2025-12-17 + +### Fixed + +- support JMESPath backtick string literals and improve module upload error ([#511](https://github.com/redis-developer/redisctl/pull/511)) + +### Other + +- update documentation URLs to new hosting location ([#509](https://github.com/redis-developer/redisctl/pull/509)) + ## [0.7.1](https://github.com/redis-developer/redisctl/compare/redis-enterprise-v0.7.0...redis-enterprise-v0.7.1) - 2025-12-16 ### Other diff --git a/crates/redis-enterprise/Cargo.toml b/crates/redis-enterprise/Cargo.toml index 51855e5..94dd744 100644 --- a/crates/redis-enterprise/Cargo.toml +++ b/crates/redis-enterprise/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "redis-enterprise" -version = "0.7.1" +version = "0.7.2" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/redisctl/CHANGELOG.md b/crates/redisctl/CHANGELOG.md index 610365f..4c3743d 100644 --- a/crates/redisctl/CHANGELOG.md +++ b/crates/redisctl/CHANGELOG.md @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.3](https://github.com/redis-developer/redisctl/compare/redisctl-v0.7.2...redisctl-v0.7.3) - 2025-12-17 + +### Added + +- add module workflow tools (validate, inspect, package) ([#513](https://github.com/redis-developer/redisctl/pull/513)) +- add module name lookup for module get and database create ([#512](https://github.com/redis-developer/redisctl/pull/512)) + +### Fixed + +- support JMESPath backtick string literals and improve module upload error ([#511](https://github.com/redis-developer/redisctl/pull/511)) +- correct repository URLs broken by PR #500 ([#506](https://github.com/redis-developer/redisctl/pull/506)) + +### Other + +- update documentation URLs to new hosting location ([#509](https://github.com/redis-developer/redisctl/pull/509)) +- release ([#503](https://github.com/redis-developer/redisctl/pull/503)) + ## [0.7.2](https://github.com/joshrotenberg/redisctl/compare/redisctl-v0.7.1...redisctl-v0.7.2) - 2025-12-13 ### Added diff --git a/crates/redisctl/Cargo.toml b/crates/redisctl/Cargo.toml index 74d9b70..4f65f08 100644 --- a/crates/redisctl/Cargo.toml +++ b/crates/redisctl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "redisctl" -version = "0.7.2" +version = "0.7.3" edition.workspace = true authors.workspace = true license.workspace = true @@ -19,8 +19,8 @@ path = "src/main.rs" [dependencies] redisctl-config = { version = "0.2.1", path = "../redisctl-config" } -redis-cloud = { version = "0.7.4", path = "../redis-cloud", features = ["tower-integration"] } -redis-enterprise = { version = "0.7.1", path = "../redis-enterprise", features = ["tower-integration"] } +redis-cloud = { version = "0.7.5", path = "../redis-cloud", features = ["tower-integration"] } +redis-enterprise = { version = "0.7.2", path = "../redis-enterprise", features = ["tower-integration"] } files-sdk = { workspace = true, optional = true } # CLI dependencies