From 53016d5d754d3f59f14f378fd0389a638e1719c5 Mon Sep 17 00:00:00 2001 From: Dinculescu Date: Mon, 21 Aug 2023 20:26:28 +0100 Subject: [PATCH] Release v0.7.2 --- CHANGELOG.md | 7 +++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e22b5f..e6180be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ file. This change log follows the conventions of ## [Unreleased] +## [v0.7.2] - 2023-08-21 + +### Added + +- Added `get_current_power` to the `P110` and `P115` plugs. (thanks to @Michal-Szczepaniak) + ## [v0.7.1] - 2023-05-30 ### Added @@ -141,6 +147,7 @@ let device = ApiClient::new(ip_address, tapo_username, tapo_password)? ### Initial Release of Tapo [unreleased]: https://github.com/mihai-dinculescu/tapo +[v0.7.2]: https://github.com/mihai-dinculescu/tapo/tree/v0.7.2 [v0.7.1]: https://github.com/mihai-dinculescu/tapo/tree/v0.7.1 [v0.7.0]: https://github.com/mihai-dinculescu/tapo/tree/v0.7.0 [v0.6.0]: https://github.com/mihai-dinculescu/tapo/tree/v0.6.0 diff --git a/Cargo.lock b/Cargo.lock index fe14af2..6353868 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -898,7 +898,7 @@ dependencies = [ [[package]] name = "tapo" -version = "0.7.1" +version = "0.7.2" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index ee67450..b088300 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tapo" -version = "0.7.1" +version = "0.7.2" edition = "2021" license = "MIT" authors = ["Mihai Dinculescu "]