diff --git a/CHANGELOG.md b/CHANGELOG.md index d29d5af..316b07b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ # Changelog + +## v0.0.4 (2023-07-01) + +### Fix + +* Adjust permissions to allow release ([`c8667b4`](https://github.com/chemelli74/aiovodafone/commit/c8667b463f339b7001ee4e6314610065ac9b9c6d)) +* Remove legacy python versions that do not support old typing ([#2](https://github.com/chemelli74/aiovodafone/issues/2)) ([`c6d6a87`](https://github.com/chemelli74/aiovodafone/commit/c6d6a8789a723487c65c4bc84ed71d250a987821)) +* Add some basic sanity tests ([#1](https://github.com/chemelli74/aiovodafone/issues/1)) ([`1d813d3`](https://github.com/chemelli74/aiovodafone/commit/1d813d3aa798221ceb982ae6b32bb3b5c942422a)) +* Dependencies fix ([`118e1b3`](https://github.com/chemelli74/aiovodafone/commit/118e1b335b2cb9132295ba8e59cc84d77caef4ee)) diff --git a/pyproject.toml b/pyproject.toml index 3fd845d..eb875ee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aiovodafone" -version = "0.0.3" +version = "0.0.4" description = "Python library to control Vodafone Station" authors = ["Simone Chemelli "] license = "Apache Software License 2.0" diff --git a/src/aiovodafone/__init__.py b/src/aiovodafone/__init__.py index fca8cf2..f2abd06 100644 --- a/src/aiovodafone/__init__.py +++ b/src/aiovodafone/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.3" +__version__ = "0.0.4" from .api import VodafoneStationApi, VodafoneStationDevice from .exceptions import CannotAuthenticate, CannotConnect, VodafoneError