diff --git a/CHANGELOG.md b/CHANGELOG.md index ac92558..2af93e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.9.5](https://github.com/redis-developer/redis-cloud-rs/compare/v0.9.4...v0.9.5) - 2026-02-06 + +### Fixed + +- handle empty object response from /tasks endpoint ([#56](https://github.com/redis-developer/redis-cloud-rs/pull/56)) +- sync Python package version with Rust crate ([#54](https://github.com/redis-developer/redis-cloud-rs/pull/54)) + ## [0.9.4](https://github.com/redis-developer/redis-cloud-rs/compare/v0.9.3...v0.9.4) - 2026-02-05 ### Other diff --git a/Cargo.lock b/Cargo.lock index ec8182f..310c705 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1028,7 +1028,7 @@ dependencies = [ [[package]] name = "redis-cloud" -version = "0.9.4" +version = "0.9.5" dependencies = [ "anyhow", "async-stream", diff --git a/Cargo.toml b/Cargo.toml index 1d4a5fe..a924316 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "redis-cloud" -version = "0.9.4" +version = "0.9.5" edition = "2024" rust-version = "1.89" authors = ["Josh Rotenberg "]