Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 11 additions & 4 deletions crates/redis-cloud/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
# Changelog

All notable changes to this project will be documented in this file.
<!-- generated by git-cliff -->
<!-- generated by git-cliff -->
<!-- generated by git-cliff -->
<!-- generated by git-cliff -->

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))
2 changes: 1 addition & 1 deletion crates/redis-cloud/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
20 changes: 16 additions & 4 deletions crates/redis-enterprise/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
# Changelog

All notable changes to this project will be documented in this file.
<!-- generated by git-cliff -->
<!-- generated by git-cliff -->
<!-- generated by git-cliff -->
<!-- generated by git-cliff -->

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))
2 changes: 1 addition & 1 deletion crates/redis-enterprise/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
12 changes: 11 additions & 1 deletion crates/redisctl/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# Changelog

All notable changes to this project will be documented in this file.
<!-- generated by git-cliff -->

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))
6 changes: 3 additions & 3 deletions crates/redisctl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "redisctl"
version = "0.6.0"
version = "0.6.1"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand All @@ -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 }
Expand Down
Loading