diff --git a/CHANGELOG.md b/CHANGELOG.md index 1584dad..f665bc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ file. This change log follows the conventions of ## [Unreleased] +## [v0.3.0] - 2022-11-20 + ### Added - The `set` API allows multiple properties to be set in a single request for the *L510* and *L530* devices. @@ -42,6 +44,7 @@ file. This change log follows the conventions of ### Initial Release of Tapo [unreleased]: https://github.com/mihai-dinculescu/tapo +[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 [v0.2.0]: https://github.com/mihai-dinculescu/tapo/tree/v0.2.0 [v0.1.0]: https://github.com/mihai-dinculescu/tapo/tree/v0.1.0 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index fc131ca..79782ef 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -11,7 +11,7 @@ If you're thinking to create a PR with large feature/change, please first discus - Add tag ```bash - git tag -a vX.X.X + git tag -a vX.X.X -m "vX.X.X" ``` - Push diff --git a/Cargo.lock b/Cargo.lock index 03803fa..51ee0e1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -641,7 +641,7 @@ dependencies = [ [[package]] name = "tapo" -version = "0.2.1" +version = "0.3.0" dependencies = [ "anyhow", "base16ct", diff --git a/Cargo.toml b/Cargo.toml index 429f727..77ab015 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tapo" -version = "0.2.1" +version = "0.3.0" edition = "2021" license = "MIT" authors = ["Mihai Dinculescu "]