diff --git a/CHANGELOG.md b/CHANGELOG.md index ab39f2a..296ea0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,17 @@ file. This change log follows the conventions of ## [Rust Unreleased][Unreleased] -### Fixed +## [Python Unreleased][Unreleased] -- Fixed an issue that preventing the `nickname` field from being decoded in the `get_device_info` results of child devices of the H100 hub. +## [Rust v0.7.6][v0.7.6] - 2023-11-25 -## [Python Unreleased][Unreleased] +### Added + +- Added support for the KE100 thermostatic radiator valve (TRV) devices (thanks to @pwoerndle). + +### Fixed + +- Fixed an issue that was preventing the `nickname` field from being decoded in the `get_device_info` results of child devices of the H100 hub. ## [Rust v0.7.5][v0.7.5] - 2023-11-05 @@ -223,6 +229,7 @@ let device = ApiClient::new(ip_address, tapo_username, tapo_password)? ### Initial Release of Tapo [Unreleased]: https://github.com/mihai-dinculescu/tapo +[v0.7.6]: https://github.com/mihai-dinculescu/tapo/tree/v0.7.6 [v0.7.5]: https://github.com/mihai-dinculescu/tapo/tree/v0.7.5 [py-v0.1.3]: https://github.com/mihai-dinculescu/tapo/tree/py-v0.1.3 [py-v0.1.2]: https://github.com/mihai-dinculescu/tapo/tree/py-v0.1.2 diff --git a/Cargo.lock b/Cargo.lock index fabecf9..444af2b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1289,7 +1289,7 @@ dependencies = [ [[package]] name = "tapo" -version = "0.7.5" +version = "0.7.6" dependencies = [ "anyhow", "async-trait", diff --git a/tapo/Cargo.toml b/tapo/Cargo.toml index 3b1987b..1ea692a 100644 --- a/tapo/Cargo.toml +++ b/tapo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tapo" -version = "0.7.5" +version = "0.7.6" edition = "2021" license = "MIT" authors = ["Mihai Dinculescu "]