diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b06298..ad608af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ file. This change log follows the conventions of ## [Rust Unreleased][Unreleased] +## [Python Unreleased][Unreleased] + +## [Rust v0.7.17][v0.7.17] - 2024-10-23 + ### Added - Added support for the P304 power strip. @@ -21,7 +25,7 @@ file. This change log follows the conventions of - Updated all comments referencing Watts to confirm the correct units are specified. -## [Python Unreleased][Unreleased] +## [Python v0.6.0][py-v0.6.0] - 2024-10-23 ### Added @@ -488,6 +492,8 @@ let device = ApiClient::new(ip_address, tapo_username, tapo_password)? ### Initial Release of Tapo [Unreleased]: https://github.com/mihai-dinculescu/tapo +[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 [py-v0.5.1]: https://github.com/mihai-dinculescu/tapo/tree/py-v0.5.1 [v0.7.15]: https://github.com/mihai-dinculescu/tapo/tree/v0.7.15 diff --git a/Cargo.lock b/Cargo.lock index cef616e..7fe67e3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -54,9 +54,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.90" +version = "1.0.91" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37bf3594c4c988a53154954629820791dde498571819ae4ca50ca811e060cc95" +checksum = "c042108f3ed77fd83760a5fd79b53be043192bb3b9dba91d8c574c0ada7850c8" [[package]] name = "arc-swap" @@ -889,9 +889,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.88" +version = "1.0.89" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c3a7fc5db1e57d5a779a352c8cdb57b29aa4c40cc69c3a68a7fedc815fbf2f9" +checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e" dependencies = [ "unicode-ident", ] @@ -1127,18 +1127,18 @@ checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" [[package]] name = "serde" -version = "1.0.210" +version = "1.0.213" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a" +checksum = "3ea7893ff5e2466df8d720bb615088341b295f849602c6956047f8f80f0e9bc1" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.210" +version = "1.0.213" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f" +checksum = "7e85ad2009c50b58e87caa8cd6dac16bdf511bbfb7af6c33df902396aa480fa5" dependencies = [ "proc-macro2", "quote", @@ -1283,9 +1283,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" [[package]] name = "syn" -version = "2.0.82" +version = "2.0.83" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83540f837a8afc019423a8edb95b52a8effe46957ee402287f4292fae35be021" +checksum = "01680f5d178a369f817f43f3d399650272873a8e7588a7872f7e90edc71d60a3" dependencies = [ "proc-macro2", "quote", @@ -1303,7 +1303,7 @@ dependencies = [ [[package]] name = "tapo" -version = "0.7.16" +version = "0.7.17" dependencies = [ "aes", "anyhow", @@ -1362,18 +1362,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.64" +version = "1.0.65" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84" +checksum = "5d11abd9594d9b38965ef50805c5e469ca9cc6f197f883f717e0269a3057b3d5" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.64" +version = "1.0.65" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3" +checksum = "ae71770322cbd277e69d762a16c444af02aa0575ac0d174f0b9562d3b37f8602" dependencies = [ "proc-macro2", "quote", @@ -1428,9 +1428,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.40.0" +version = "1.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998" +checksum = "145f3413504347a2be84393cc8a7d2fb4d863b375909ea59f2158261aa258bbb" dependencies = [ "backtrace", "libc", diff --git a/Cargo.toml b/Cargo.toml index 1fb005b..5c7d3f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,4 +9,4 @@ chrono = { version = "0.4.34", default-features = false } pyo3 = { version = "0.22" } serde = { version = "1.0" } serde_json = { version = "1.0" } -tokio = { version = "1.40", default-features = false } +tokio = { version = "1.41", default-features = false } diff --git a/tapo/Cargo.toml b/tapo/Cargo.toml index 4fd76da..e6e32de 100644 --- a/tapo/Cargo.toml +++ b/tapo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tapo" -version = "0.7.16" +version = "0.7.17" edition = "2021" license = "MIT" authors = ["Mihai Dinculescu "]