diff --git a/Cargo.lock b/Cargo.lock index 14a3a22a..25cfd809 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1991,7 +1991,7 @@ dependencies = [ [[package]] name = "redis-cloud" -version = "0.6.0" +version = "0.6.1" dependencies = [ "anyhow", "async-trait", @@ -2013,7 +2013,7 @@ dependencies = [ [[package]] name = "redis-enterprise" -version = "0.6.0" +version = "0.6.1" dependencies = [ "anyhow", "async-trait", @@ -2037,7 +2037,7 @@ dependencies = [ [[package]] name = "redisctl" -version = "0.6.0" +version = "0.6.1" dependencies = [ "anyhow", "assert_cmd", diff --git a/crates/redis-cloud/CHANGELOG.md b/crates/redis-cloud/CHANGELOG.md index d151addf..18cc3aa8 100644 --- a/crates/redis-cloud/CHANGELOG.md +++ b/crates/redis-cloud/CHANGELOG.md @@ -1,7 +1,14 @@ # Changelog All notable changes to this project will be documented in this file. - - - - + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.6.1](https://github.com/joshrotenberg/redisctl/compare/redis-cloud-v0.6.0...redis-cloud-v0.6.1) - 2025-09-16 + +### Added + +- add serde_path_to_error for better deserialization error messages ([#349](https://github.com/joshrotenberg/redisctl/pull/349)) \ No newline at end of file diff --git a/crates/redis-cloud/Cargo.toml b/crates/redis-cloud/Cargo.toml index 1b202770..1ae7beab 100644 --- a/crates/redis-cloud/Cargo.toml +++ b/crates/redis-cloud/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "redis-cloud" -version = "0.6.0" +version = "0.6.1" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/redis-enterprise/CHANGELOG.md b/crates/redis-enterprise/CHANGELOG.md index d151addf..3935c286 100644 --- a/crates/redis-enterprise/CHANGELOG.md +++ b/crates/redis-enterprise/CHANGELOG.md @@ -1,7 +1,19 @@ # Changelog All notable changes to this project will be documented in this file. - - - - + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.6.1](https://github.com/joshrotenberg/redisctl/compare/redis-enterprise-v0.6.0...redis-enterprise-v0.6.1) - 2025-09-16 + +### Added + +- add serde_path_to_error for better deserialization error messages ([#349](https://github.com/joshrotenberg/redisctl/pull/349)) + +### Fixed + +- *(redis-enterprise)* correct max_aof_file_size type from String to u64 ([#351](https://github.com/joshrotenberg/redisctl/pull/351)) +- *(redis-enterprise)* correct master_persistence type from String to bool ([#348](https://github.com/joshrotenberg/redisctl/pull/348)) \ No newline at end of file diff --git a/crates/redis-enterprise/Cargo.toml b/crates/redis-enterprise/Cargo.toml index 557d9b67..6f9a5825 100644 --- a/crates/redis-enterprise/Cargo.toml +++ b/crates/redis-enterprise/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "redis-enterprise" -version = "0.6.0" +version = "0.6.1" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/redisctl/CHANGELOG.md b/crates/redisctl/CHANGELOG.md index cd712a9e..73428a45 100644 --- a/crates/redisctl/CHANGELOG.md +++ b/crates/redisctl/CHANGELOG.md @@ -1,4 +1,14 @@ # Changelog All notable changes to this project will be documented in this file. - + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.6.1](https://github.com/joshrotenberg/redisctl/compare/redisctl-v0.6.0...redisctl-v0.6.1) - 2025-09-16 + +### Fixed + +- improve profile resolution for explicit cloud/enterprise commands ([#353](https://github.com/joshrotenberg/redisctl/pull/353)) \ No newline at end of file diff --git a/crates/redisctl/Cargo.toml b/crates/redisctl/Cargo.toml index 6eb2035b..e1cba064 100644 --- a/crates/redisctl/Cargo.toml +++ b/crates/redisctl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "redisctl" -version = "0.6.0" +version = "0.6.1" edition.workspace = true authors.workspace = true license.workspace = true @@ -18,8 +18,8 @@ path = "src/main.rs" [dependencies] -redis-cloud = { version = "0.6.0", path = "../redis-cloud" } -redis-enterprise = { version = "0.6.0", path = "../redis-enterprise" } +redis-cloud = { version = "0.6.1", path = "../redis-cloud" } +redis-enterprise = { version = "0.6.1", path = "../redis-enterprise" } # CLI dependencies clap = { workspace = true }