Skip to content

Commit f45ead2

Browse files
chore: release v0.6.1 (#357)
- redis-cloud: 0.6.0 -> 0.6.1 - redis-enterprise: 0.6.0 -> 0.6.1 - redisctl: 0.6.0 -> 0.6.1 Changes: - Fixed profile resolution for explicit cloud/enterprise commands - Fixed type mismatches in Redis Enterprise API responses: - master_persistence: String -> bool - max_aof_file_size: String -> u64 - Added serde_path_to_error for better deserialization debugging
1 parent 38acc98 commit f45ead2

File tree

7 files changed

+46
-17
lines changed

7 files changed

+46
-17
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/redis-cloud/CHANGELOG.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
# Changelog
22

33
All notable changes to this project will be documented in this file.
4-
<!-- generated by git-cliff -->
5-
<!-- generated by git-cliff -->
6-
<!-- generated by git-cliff -->
7-
<!-- generated by git-cliff -->
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.6.1](https://github.com/joshrotenberg/redisctl/compare/redis-cloud-v0.6.0...redis-cloud-v0.6.1) - 2025-09-16
11+
12+
### Added
13+
14+
- add serde_path_to_error for better deserialization error messages ([#349](https://github.com/joshrotenberg/redisctl/pull/349))

crates/redis-cloud/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "redis-cloud"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
# Changelog
22

33
All notable changes to this project will be documented in this file.
4-
<!-- generated by git-cliff -->
5-
<!-- generated by git-cliff -->
6-
<!-- generated by git-cliff -->
7-
<!-- generated by git-cliff -->
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.6.1](https://github.com/joshrotenberg/redisctl/compare/redis-enterprise-v0.6.0...redis-enterprise-v0.6.1) - 2025-09-16
11+
12+
### Added
13+
14+
- add serde_path_to_error for better deserialization error messages ([#349](https://github.com/joshrotenberg/redisctl/pull/349))
15+
16+
### Fixed
17+
18+
- *(redis-enterprise)* correct max_aof_file_size type from String to u64 ([#351](https://github.com/joshrotenberg/redisctl/pull/351))
19+
- *(redis-enterprise)* correct master_persistence type from String to bool ([#348](https://github.com/joshrotenberg/redisctl/pull/348))

crates/redis-enterprise/Cargo.toml

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

crates/redisctl/CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
# Changelog
22

33
All notable changes to this project will be documented in this file.
4-
<!-- generated by git-cliff -->
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.6.1](https://github.com/joshrotenberg/redisctl/compare/redisctl-v0.6.0...redisctl-v0.6.1) - 2025-09-16
11+
12+
### Fixed
13+
14+
- improve profile resolution for explicit cloud/enterprise commands ([#353](https://github.com/joshrotenberg/redisctl/pull/353))

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.6.0"
3+
version = "0.6.1"
44
edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
@@ -18,8 +18,8 @@ path = "src/main.rs"
1818

1919

2020
[dependencies]
21-
redis-cloud = { version = "0.6.0", path = "../redis-cloud" }
22-
redis-enterprise = { version = "0.6.0", path = "../redis-enterprise" }
21+
redis-cloud = { version = "0.6.1", path = "../redis-cloud" }
22+
redis-enterprise = { version = "0.6.1", path = "../redis-enterprise" }
2323

2424
# CLI dependencies
2525
clap = { workspace = true }

0 commit comments

Comments
 (0)