diff --git a/CHANGELOG.md b/CHANGELOG.md index 69c4f49..69a8351 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ +## v0.1.0 (2023-09-07) + +### Feature + +* Full sensor data, restart connection/router ([`db68478`](https://github.com/chemelli74/aiovodafone/commit/db684781d2b732f7920209cf0ef6f0c4af2e6ec5)) +* Full sensor data, restart connection/router ([`3f40512`](https://github.com/chemelli74/aiovodafone/commit/3f40512e5170bb3e1173ceafa6d7d44ee02a45eb)) + +### Fix + +* Handle credentials with special characters ([`d3b0a14`](https://github.com/chemelli74/aiovodafone/commit/d3b0a14910908735c5c87615ba51c8e227581c59)) +* Handle credentials with special characters ([`1b4a6cd`](https://github.com/chemelli74/aiovodafone/commit/1b4a6cd5af2c6c644b2077515ad3164faab30c64)) + ## v0.0.8 (2023-09-05) ### Fix diff --git a/pyproject.toml b/pyproject.toml index 0abf1c3..54c38ac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aiovodafone" -version = "0.0.8" +version = "0.1.0" 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 0ce726a..51355a6 100644 --- a/src/aiovodafone/__init__.py +++ b/src/aiovodafone/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.8" +__version__ = "0.1.0" from .api import VodafoneStationApi, VodafoneStationDevice from .exceptions import CannotAuthenticate, CannotConnect, VodafoneError