diff --git a/CHANGELOG.md b/CHANGELOG.md index da2f4c8..6d83285 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ file. This change log follows the conventions of ## [Unreleased] +## [v0.7.1] - 2023-05-30 + ### Added - Added `get_temperature_humidity_records` to the `T310` and `T315` sensors. @@ -139,6 +141,7 @@ let device = ApiClient::new(ip_address, tapo_username, tapo_password)? ### Initial Release of Tapo [unreleased]: https://github.com/mihai-dinculescu/tapo +[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 [v0.5.0]: https://github.com/mihai-dinculescu/tapo/tree/v0.5.0 diff --git a/Cargo.lock b/Cargo.lock index fddf6fc..fe14af2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -614,9 +614,9 @@ checksum = "9670a07f94779e00908f3e686eab508878ebb390ba6e604d3a284c00e8d0487b" [[package]] name = "openssl" -version = "0.10.52" +version = "0.10.53" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01b8574602df80f7b85fdfc5392fa884a4e3b3f4f35402c070ab34c3d3f78d56" +checksum = "12df40a956736488b7b44fe79fe12d4f245bb5b3f5a1f6095e499760015be392" dependencies = [ "bitflags", "cfg-if", @@ -646,9 +646,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] name = "openssl-sys" -version = "0.9.87" +version = "0.9.88" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e17f59264b2809d77ae94f0e1ebabc434773f370d6ca667bd223ea10e06cc7e" +checksum = "c2ce0f250f34a308dcfdbb351f511359857d4ed2134ba715a4eadd46e1ffd617" dependencies = [ "cc", "libc", @@ -898,7 +898,7 @@ dependencies = [ [[package]] name = "tapo" -version = "0.7.0" +version = "0.7.1" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index d3f07f5..ee67450 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tapo" -version = "0.7.0" +version = "0.7.1" edition = "2021" license = "MIT" authors = ["Mihai Dinculescu "]