diff --git a/CHANGELOG.md b/CHANGELOG.md index e98ca62..a6177b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ +## v0.2.1 (2023-06-26) + +### Fix + +* Remove loop parameter from timeout ([`d0d25b3`](https://github.com/alandtse/pr_custom_component/commit/d0d25b3d5de96eecc717467dd8deefaa519eb9d4)) + +### Documentation + +* Switch logo to remove HA house ([`0228592`](https://github.com/alandtse/pr_custom_component/commit/0228592116ff3741c55c42b23ddc2a45b1c468eb)) + ## v0.2.0 (2021-03-29) ### Feature * Autogenerate minimal translations ([`55f56d1`](https://github.com/alandtse/pr_custom_component/commit/55f56d109a88d42790f547118eabe4390ce2e6fb)) diff --git a/custom_components/pr_custom_component/const.py b/custom_components/pr_custom_component/const.py index 0db1ad8..7ef3b2e 100644 --- a/custom_components/pr_custom_component/const.py +++ b/custom_components/pr_custom_component/const.py @@ -14,7 +14,7 @@ DOMAIN = "pr_custom_component" HACS_DOMAIN = "hacs" DOMAIN_DATA = f"{DOMAIN}_data" -VERSION = "0.2.0" +VERSION = "0.2.1" ISSUE_URL = "https://github.com/alandtse/pr_custom_component/issues" # GitHub constants diff --git a/custom_components/pr_custom_component/manifest.json b/custom_components/pr_custom_component/manifest.json index 6c95700..305ce27 100644 --- a/custom_components/pr_custom_component/manifest.json +++ b/custom_components/pr_custom_component/manifest.json @@ -8,5 +8,5 @@ "iot_class": "cloud_polling", "issue_tracker": "https://github.com/alandtse/pr_custom_component/issues", "requirements": ["aiofiles>=0.6.0"], - "version": "0.2.0" + "version": "0.2.1" } diff --git a/pyproject.toml b/pyproject.toml index 6b771c7..43a0cbe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pr_custom_component" -version = "0.2.0" +version = "0.2.1" description = "A home assistant integration to install a HA pull request as a custom component." authors = ["Alan D. Tse "] license = "Apache-2.0"