diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c343a6..b0f5064 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,15 @@ file. This change log follows the conventions of ## [Rust Unreleased][Unreleased] +## [Python Unreleased][Unreleased] + +## [Rust v0.7.13][v0.7.13] - 2024-08-26 + ### Changed - To align with the latest API updates, the `overheated` field for plugs has been replaced by three enums: `overcurrent_status`, `overheat_status`, and `power_protection_status` (thanks to @padenot). -## [Python Unreleased][Unreleased] +## [Python v0.3.2][py-v0.3.2] - 2024-08-26 ### Changed @@ -374,6 +378,8 @@ let device = ApiClient::new(ip_address, tapo_username, tapo_password)? ### Initial Release of Tapo [Unreleased]: https://github.com/mihai-dinculescu/tapo +[v0.7.13]: https://github.com/mihai-dinculescu/tapo/tree/v0.7.13 +[py-v0.3.2]: https://github.com/mihai-dinculescu/tapo/tree/py-v0.3.2 [v0.7.12]: https://github.com/mihai-dinculescu/tapo/tree/v0.7.12 [py-v0.3.1]: https://github.com/mihai-dinculescu/tapo/tree/py-v0.3.1 [v0.7.11]: https://github.com/mihai-dinculescu/tapo/tree/v0.7.11 diff --git a/Cargo.lock b/Cargo.lock index e5449a2..83609a4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1159,7 +1159,7 @@ dependencies = [ [[package]] name = "tapo" -version = "0.7.12" +version = "0.7.13" dependencies = [ "anyhow", "async-trait", diff --git a/tapo/Cargo.toml b/tapo/Cargo.toml index ec47b2d..da9e0b1 100644 --- a/tapo/Cargo.toml +++ b/tapo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tapo" -version = "0.7.12" +version = "0.7.13" edition = "2021" license = "MIT" authors = ["Mihai Dinculescu "]