From 535c234737e59fe0e5389a536150bf19301f1727 Mon Sep 17 00:00:00 2001 From: Josh Rotenberg Date: Tue, 11 Aug 2026 15:33:41 -0700 Subject: [PATCH 1/2] chore: release v0.12.0 --- CHANGELOG.md | 15 +++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 84d08b4..0e4e535 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.12.0](https://github.com/redis-developer/redis-cloud-rs/compare/v0.11.0...v0.12.0) - 2026-08-11 + +### Added + +- *(spec)* reconcile current Cloud API and live response drift ([#154](https://github.com/redis-developer/redis-cloud-rs/pull/154)) + +### Other + +- *(live)* schedule safe contract validation ([#162](https://github.com/redis-developer/redis-cloud-rs/pull/162)) +- *(test)* establish a ratcheting coverage floor ([#161](https://github.com/redis-developer/redis-cloud-rs/pull/161)) +- *(spec)* schedule OpenAPI drift detection ([#160](https://github.com/redis-developer/redis-cloud-rs/pull/160)) +- close PSC and Transit Gateway coverage gaps ([#159](https://github.com/redis-developer/redis-cloud-rs/pull/159)) +- cover the public CloudError contract ([#158](https://github.com/redis-developer/redis-cloud-rs/pull/158)) +- synchronize README dependency version ([#156](https://github.com/redis-developer/redis-cloud-rs/pull/156)) + ### Added - Add handlers for Data Integration workspaces and dynamic endpoint redirections. diff --git a/Cargo.lock b/Cargo.lock index 796e92a..8b9cb92 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1028,7 +1028,7 @@ dependencies = [ [[package]] name = "redis-cloud" -version = "0.11.0" +version = "0.12.0" dependencies = [ "anyhow", "async-stream", diff --git a/Cargo.toml b/Cargo.toml index 6b6dac8..73d1e56 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "redis-cloud" -version = "0.11.0" +version = "0.12.0" edition = "2024" rust-version = "1.89" authors = ["Josh Rotenberg "] From db61d387fbda03cdee2e611e0d5685bd03e5550d Mon Sep 17 00:00:00 2001 From: Josh Rotenberg Date: Thu, 13 Aug 2026 11:39:00 -0700 Subject: [PATCH 2/2] docs: update README for v0.12 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6c0e5ee..a66fcd5 100644 --- a/README.md +++ b/README.md @@ -28,10 +28,10 @@ A comprehensive Rust client library for the Redis Cloud REST API, with Python bi ```toml [dependencies] -redis-cloud = "0.11" +redis-cloud = "0.12" # Optional: Enable Tower service integration -redis-cloud = { version = "0.11", features = ["tower-integration"] } +redis-cloud = { version = "0.12", features = ["tower-integration"] } ``` ## Quick Start