From 851d714bea3325a07e89ae43269ebebb2cdc893e Mon Sep 17 00:00:00 2001 From: Dinculescu Date: Thu, 14 Sep 2023 20:37:56 +0100 Subject: [PATCH] Release v0.7.3 --- CHANGELOG.md | 4 ++++ CONTRIBUTING.md | 2 +- Cargo.lock | 2 +- tapo/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d88485..7ddfb69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,10 @@ file. This change log follows the conventions of ## [Unreleased] +## [v0.7.3] - 2023-09-14 + ### Added + - Added support for the newly introduced KLAP protocol, which is required to interact with the latest firmware version of multiple devices. ### Changed @@ -164,6 +167,7 @@ let device = ApiClient::new(ip_address, tapo_username, tapo_password)? ### Initial Release of Tapo [unreleased]: https://github.com/mihai-dinculescu/tapo +[v0.7.3]: https://github.com/mihai-dinculescu/tapo/tree/v0.7.3 [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 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 79782ef..1a567a9 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -5,7 +5,7 @@ If you're thinking to create a PR with large feature/change, please first discus ## Releases -- Update version in `Cargo.toml` +- Update version in `tapo/Cargo.toml` - Update CHANGELOG.md - Commit - Add tag diff --git a/Cargo.lock b/Cargo.lock index 50f4ba4..d4a9a64 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1276,7 +1276,7 @@ dependencies = [ [[package]] name = "tapo" -version = "0.7.2" +version = "0.7.3" dependencies = [ "anyhow", "async-trait", diff --git a/tapo/Cargo.toml b/tapo/Cargo.toml index 8b4936e..c8bcd71 100644 --- a/tapo/Cargo.toml +++ b/tapo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tapo" -version = "0.7.2" +version = "0.7.3" edition = "2021" license = "MIT" authors = ["Mihai Dinculescu "]