diff --git a/CHANGELOG.md b/CHANGELOG.md index 18243a3..1b20ce2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ file. This change log follows the conventions of ## [Rust Unreleased][Unreleased] +## [Python Unreleased][Unreleased] + +## [Rust v0.7.9][v0.7.9] - 2024-01-27 + ### Changed - The `send()` method of the `.set()` API now takes a reference to the device handler in order to allow for better ergonomics. @@ -14,7 +18,7 @@ file. This change log follows the conventions of - The device info response for the L510, L520, and L610 devices has been fixed. -## [Python Unreleased][Unreleased] +## [Python v0.2.0][py-v0.2.0] - 2024-01-27 ### Added @@ -288,6 +292,8 @@ let device = ApiClient::new(ip_address, tapo_username, tapo_password)? ### Initial Release of Tapo [Unreleased]: https://github.com/mihai-dinculescu/tapo +[v0.7.9]: https://github.com/mihai-dinculescu/tapo/tree/v0.7.9 +[py-v0.2.0]: https://github.com/mihai-dinculescu/tapo/tree/py-v0.2.0 [v0.7.8]: https://github.com/mihai-dinculescu/tapo/tree/v0.7.8 [py-v0.1.5]: https://github.com/mihai-dinculescu/tapo/tree/py-v0.1.5 [v0.7.7]: https://github.com/mihai-dinculescu/tapo/tree/v0.7.7 diff --git a/Cargo.lock b/Cargo.lock index b401823..348c0f2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1286,7 +1286,7 @@ dependencies = [ [[package]] name = "tapo" -version = "0.7.8" +version = "0.7.9" dependencies = [ "anyhow", "async-trait", diff --git a/tapo/Cargo.toml b/tapo/Cargo.toml index 7abd9d7..e92fd52 100644 --- a/tapo/Cargo.toml +++ b/tapo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tapo" -version = "0.7.8" +version = "0.7.9" edition = "2021" license = "MIT" authors = ["Mihai Dinculescu "]