From db2467cdc4b5e567e80755c03a629201d0915c21 Mon Sep 17 00:00:00 2001 From: Mihai Dinculescu Date: Sat, 25 Feb 2023 18:01:57 +0000 Subject: [PATCH] Release v0.4.0 --- CHANGELOG.md | 5 ++++- Cargo.lock | 22 +++++++++++----------- Cargo.toml | 2 +- 3 files changed, 16 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 94047df..e81ed81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,11 @@ file. This change log follows the conventions of ## [Unreleased] +## [v0.4.0] - 2023-02-25 + ### Added -- `get_energy_data` is now available for the *P110* devices. +- `get_energy_data` is now available for the *P110* devices. (thanks to @kuhschnappel) ### Changed @@ -60,6 +62,7 @@ file. This change log follows the conventions of ### Initial Release of Tapo [unreleased]: https://github.com/mihai-dinculescu/tapo +[v0.4.0]: https://github.com/mihai-dinculescu/tapo/tree/v0.4.0 [v0.3.1]: https://github.com/mihai-dinculescu/tapo/tree/v0.3.1 [v0.3.0]: https://github.com/mihai-dinculescu/tapo/tree/v0.3.0 [v0.2.1]: https://github.com/mihai-dinculescu/tapo/tree/v0.2.1 diff --git a/Cargo.lock b/Cargo.lock index c5e9905..0270820 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -122,9 +122,9 @@ dependencies = [ [[package]] name = "curl-sys" -version = "0.4.59+curl-7.86.0" +version = "0.4.60+curl-7.88.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6cfce34829f448b08f55b7db6d0009e23e2e86a34e8c2b366269bf5799b4a407" +checksum = "717abe2cb465a5da6ce06617388a3980c9a2844196734bec8ccb8e575250f13f" dependencies = [ "cc", "libc", @@ -602,9 +602,9 @@ dependencies = [ [[package]] name = "slab" -version = "0.4.7" +version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" +checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" dependencies = [ "autocfg", ] @@ -632,9 +632,9 @@ dependencies = [ [[package]] name = "syn" -version = "1.0.107" +version = "1.0.109" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" dependencies = [ "proc-macro2", "quote", @@ -643,7 +643,7 @@ dependencies = [ [[package]] name = "tapo" -version = "0.3.1" +version = "0.4.0" dependencies = [ "anyhow", "base16ct", @@ -670,9 +670,9 @@ dependencies = [ [[package]] name = "time" -version = "0.3.19" +version = "0.3.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53250a3b3fed8ff8fd988587d8925d26a83ac3845d9e03b220b37f34c2b8d6c2" +checksum = "cd0cbfecb4d19b5ea75bb31ad904eb5b9fa13f21079c3b92017ebdf4999a5890" dependencies = [ "serde", "time-core", @@ -687,9 +687,9 @@ checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" [[package]] name = "time-macros" -version = "0.2.7" +version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a460aeb8de6dcb0f381e1ee05f1cd56fcf5a5f6eb8187ff3d8f0b11078d38b7c" +checksum = "fd80a657e71da814b8e5d60d3374fc6d35045062245d80224748ae522dd76f36" dependencies = [ "time-core", ] diff --git a/Cargo.toml b/Cargo.toml index 2f1bc63..6691a10 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tapo" -version = "0.3.1" +version = "0.4.0" edition = "2021" license = "MIT" authors = ["Mihai Dinculescu "]