From 73bd223c76c1d8baadb036359b1e7ba5ac83032a Mon Sep 17 00:00:00 2001 From: Mihai Dinculescu Date: Thu, 7 Nov 2024 20:58:30 +0000 Subject: [PATCH] tapo-py: Release v0.7.0 --- CHANGELOG.md | 5 ++++- tapo-py/poetry.lock | 8 ++++---- tapo-py/pyproject.toml | 4 ++-- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 414e609..0a9e859 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,9 +8,11 @@ file. This change log follows the conventions of ## [Python Unreleased][Unreleased] +## [Python v0.7.0][py-v0.7.0] - 2024-11-07 + ### Added -- Added full support for the KE100 thermostatic radiator valve (TRV) through the `KE100Handler`. +- Added support for the KE100 thermostatic radiator valve (TRV). ## [Rust v0.7.17][v0.7.17] - 2024-10-23 @@ -496,6 +498,7 @@ let device = ApiClient::new(ip_address, tapo_username, tapo_password)? ### Initial Release of Tapo [Unreleased]: https://github.com/mihai-dinculescu/tapo +[py-v0.7.0]: https://github.com/mihai-dinculescu/tapo/tree/py-v0.7.0 [v0.7.17]: https://github.com/mihai-dinculescu/tapo/tree/v0.7.17 [py-v0.6.0]: https://github.com/mihai-dinculescu/tapo/tree/py-v0.6.0 [v0.7.16]: https://github.com/mihai-dinculescu/tapo/tree/v0.7.16 diff --git a/tapo-py/poetry.lock b/tapo-py/poetry.lock index 7d64386..59dd54c 100644 --- a/tapo-py/poetry.lock +++ b/tapo-py/poetry.lock @@ -31,13 +31,13 @@ zig = ["ziglang (>=0.10.0,<0.13.0)"] [[package]] name = "tomli" -version = "2.0.1" +version = "2.0.2" description = "A lil' TOML parser" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, - {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, + {file = "tomli-2.0.2-py3-none-any.whl", hash = "sha256:2ebe24485c53d303f690b0ec092806a085f07af5a5aa1464f3931eec36caaa38"}, + {file = "tomli-2.0.2.tar.gz", hash = "sha256:d46d457a85337051c36524bc5349dd91b1877838e2979ac5ced3e710ed8a60ed"}, ] [metadata] diff --git a/tapo-py/pyproject.toml b/tapo-py/pyproject.toml index ab68341..8f7925f 100644 --- a/tapo-py/pyproject.toml +++ b/tapo-py/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "tapo" -version = "0.6.0" +version = "0.7.0" description = "Unofficial Tapo API Client. Works with TP-Link Tapo smart devices. Tested with light bulbs (L510, L520, L530, L535, L610, L630), plugs (P100, P105, P110, P115), power strips (P300, P304), hubs (H100), switches (S200B) and sensors (KE100, T100, T110, T300, T310, T315)." authors = ["Mihai Dinculescu "] [project] name = "tapo" -version = "0.6.0" +version = "0.7.0" description = "Unofficial Tapo API Client. Works with TP-Link Tapo smart devices. Tested with light bulbs (L510, L520, L530, L535, L610, L630), plugs (P100, P105, P110, P115), power strips (P300, P304), hubs (H100), switches (S200B) and sensors (KE100, T100, T110, T300, T310, T315)." readme = "README.md" license = { file = "LICENSE" }