diff --git a/CHANGELOG.md b/CHANGELOG.md index eab12e5..2e36b77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v0.3.0 (2024-11-24) + +### Features + +* Add model foundation (#24) ([`722f614`](https://github.com/MartinHjelmare/aiohomeconnect/commit/722f61472d375debaf73c5fb40937e1495929fac)) + ## v0.2.13 (2024-11-23) ### Bug fixes diff --git a/docs/conf.py b/docs/conf.py index cf20c74..6376acc 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -7,7 +7,7 @@ project = "aiohomeconnect" project_copyright = "2024, Martin Hjelmare" author = "Martin Hjelmare" -release = "0.2.13" +release = "0.3.0" # General configuration extensions = [ diff --git a/pyproject.toml b/pyproject.toml index 8ce705e..8eb828a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ packages = [ ] readme = "README.md" repository = "https://github.com/MartinHjelmare/aiohomeconnect" -version = "0.2.13" +version = "0.3.0" [tool.poetry.urls] "Bug Tracker" = "https://github.com/MartinHjelmare/aiohomeconnect/issues" diff --git a/src/aiohomeconnect/__init__.py b/src/aiohomeconnect/__init__.py index 7543fd4..64f5dc3 100644 --- a/src/aiohomeconnect/__init__.py +++ b/src/aiohomeconnect/__init__.py @@ -1,3 +1,3 @@ """Asynchronous Python client for Home Connect API.""" -__version__ = "0.2.13" +__version__ = "0.3.0"