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 "] 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