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
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <josh.rotenberg@redis.com>"]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading