Skip to content

Commit 8d4f683

Browse files
Merge pull request #364 from joshrotenberg/chore/release-0.6.2
chore: release v0.6.2
2 parents 5dd7f07 + a8cc275 commit 8d4f683

File tree

6 files changed

+41
-9
lines changed

6 files changed

+41
-9
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,38 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.6.2] - 2025-09-22
6+
7+
### 🐛 Bug Fixes
8+
9+
- **error-handling**: Improve error messages to include HTTP status codes (#363)
10+
- Show specific messages like "401 Unauthorized: Invalid username or password"
11+
- Display "404 Not Found: The requested resource does not exist"
12+
- Preserve HTTP status codes through the entire error chain
13+
- Replace generic "Configuration error" with actionable error details
14+
15+
### 🚀 Features
16+
17+
- **docker**: Enhance Docker Compose setup with comprehensive redisctl examples (#363)
18+
- Add extensive examples demonstrating redisctl usage
19+
- Replace curl commands with redisctl equivalents
20+
- Include proper authentication patterns
21+
22+
## [0.6.1] - 2025-09-17
23+
24+
### 🚀 Features
25+
26+
- Add secure credential storage using OS keyring (#360)
27+
- Add workflow_dispatch to Docker workflow for manual triggers (#358)
28+
29+
### 🐛 Bug Fixes
30+
31+
- Docker workflow version extraction for manual dispatch (#359)
32+
33+
### 📚 Documentation
34+
35+
- Reorganize documentation structure for better navigation (#362)
36+
537
## [0.6.0] - 2025-09-16
638

739
### ✨ Features

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.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ default-members = [
1212
]
1313

1414
[workspace.package]
15-
version = "0.6.0"
15+
version = "0.6.2"
1616
edition = "2024"
1717
rust-version = "1.89"
1818
authors = ["Josh Rotenberg <joshrotenberg@gmail.com>"]

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

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

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.1"
3+
version = "0.6.2"
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.1", path = "../redis-cloud" }
22-
redis-enterprise = { version = "0.6.1", path = "../redis-enterprise" }
21+
redis-cloud = { version = "0.6.2", path = "../redis-cloud" }
22+
redis-enterprise = { version = "0.6.2", path = "../redis-enterprise" }
2323

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

0 commit comments

Comments
 (0)