diff --git a/CHANGELOG.md b/CHANGELOG.md index 2af93e7..ccb467c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.0](https://github.com/redis-developer/redis-cloud-rs/compare/v0.9.5...v0.10.0) - 2026-05-19 + +### Fixed + +- *(connectivity)* vpc_peering create body serializes the spec's wire keys ([#89](https://github.com/redis-developer/redis-cloud-rs/pull/89)) +- *(account)* PaymentMethod.credit_card_ends_with should be String, not i32 ([#87](https://github.com/redis-developer/redis-cloud-rs/pull/87)) +- *(flexible/databases)* rename Database.activated to activated_on (wire field is `activatedOn`) ([#86](https://github.com/redis-developer/redis-cloud-rs/pull/86)) +- *(tasks)* handle the canonical TasksStateUpdate wrapper from GET /tasks ([#85](https://github.com/redis-developer/redis-cloud-rs/pull/85)) +- *(fixed/databases)* add missing 'subscription' field to AccountFixedSubscriptionDatabases ([#81](https://github.com/redis-developer/redis-cloud-rs/pull/81)) + +### Other + +- enforce #![deny(missing_docs)] and rustdoc::broken_intra_doc_links ([#98](https://github.com/redis-developer/redis-cloud-rs/pull/98)) +- *(models)* document fields in the four large request/response modules ([#96](https://github.com/redis-developer/redis-cloud-rs/pull/96)) +- *(users)* document all undocumented fields in user request/response models ([#95](https://github.com/redis-developer/redis-cloud-rs/pull/95)) +- *(small modules)* document the remaining undocumented fields in 6 short modules ([#94](https://github.com/redis-developer/redis-cloud-rs/pull/94)) +- *(connectivity)* expand thin module headers (psc, transit_gateway, vpc_peering) ([#93](https://github.com/redis-developer/redis-cloud-rs/pull/93)) +- *(types)* expand module header and document all variants/fields in shared types ([#92](https://github.com/redis-developer/redis-cloud-rs/pull/92)) +- *(connectivity)* document ConnectivityHandler delegation methods and struct fields ([#91](https://github.com/redis-developer/redis-cloud-rs/pull/91)) +- *(lib.rs)* refresh stale examples in crate-level docs ([#90](https://github.com/redis-developer/redis-cloud-rs/pull/90)) +- *(cost_report)* add wiremock integration coverage for the exported handler ([#88](https://github.com/redis-developer/redis-cloud-rs/pull/88)) + ## [0.9.5](https://github.com/redis-developer/redis-cloud-rs/compare/v0.9.4...v0.9.5) - 2026-02-06 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 7e74f01..4ad306b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1028,7 +1028,7 @@ dependencies = [ [[package]] name = "redis-cloud" -version = "0.9.5" +version = "0.10.0" dependencies = [ "anyhow", "async-stream", diff --git a/Cargo.toml b/Cargo.toml index a924316..df0afb2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "redis-cloud" -version = "0.9.5" +version = "0.10.0" edition = "2024" rust-version = "1.89" authors = ["Josh Rotenberg "]