From d3e4c238fbc73fb453e1fe3475887d10f0656fce Mon Sep 17 00:00:00 2001 From: Josh Rotenberg Date: Fri, 30 Jan 2026 09:17:20 -0800 Subject: [PATCH] chore: release v0.9.0 --- CHANGELOG.md | 23 +++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 25 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fcb416..ebb0add 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.9.0](https://github.com/redis-developer/redis-cloud-rs/compare/v0.8.0...v0.9.0) - 2026-01-30 + +### Added + +- update Python bindings with new methods and add tests ([#33](https://github.com/redis-developer/redis-cloud-rs/pull/33)) + +### Fixed + +- use Link type instead of HashMap for HATEOAS links ([#28](https://github.com/redis-developer/redis-cloud-rs/pull/28)) +- address multiple bugs in client and cost_report modules ([#25](https://github.com/redis-developer/redis-cloud-rs/pull/25)) +- add README to PyPI package ([#3](https://github.com/redis-developer/redis-cloud-rs/pull/3)) + +### Other + +- code cleanup and add examples ([#42](https://github.com/redis-developer/redis-cloud-rs/pull/42)) +- align Rust types with Go client (rediscloud-go-api) ([#41](https://github.com/redis-developer/redis-cloud-rs/pull/41)) +- add dependency audit and code coverage ([#34](https://github.com/redis-developer/redis-cloud-rs/pull/34)) +- reduce VPC peering duplication and add pagination helpers ([#32](https://github.com/redis-developer/redis-cloud-rs/pull/32)) +- fix README examples and add handler method documentation ([#31](https://github.com/redis-developer/redis-cloud-rs/pull/31)) +- API cleanup and ergonomic improvements ([#30](https://github.com/redis-developer/redis-cloud-rs/pull/30)) +- improve type safety for response and request types ([#29](https://github.com/redis-developer/redis-cloud-rs/pull/29)) +- consolidate duplicate ProcessorResponse and error handling ([#26](https://github.com/redis-developer/redis-cloud-rs/pull/26)) + ## [0.8.0](https://github.com/redis-developer/redis-cloud-rs/compare/v0.7.6...v0.8.0) - 2026-01-30 ### Added diff --git a/Cargo.lock b/Cargo.lock index 08aeaab..eb37f96 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -919,7 +919,7 @@ dependencies = [ [[package]] name = "redis-cloud" -version = "0.8.0" +version = "0.9.0" dependencies = [ "anyhow", "async-stream", diff --git a/Cargo.toml b/Cargo.toml index 257d6b6..38c78cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "redis-cloud" -version = "0.8.0" +version = "0.9.0" edition = "2024" rust-version = "1.85" authors = ["Josh Rotenberg "]