diff --git a/pybalboa/__init__.py b/pybalboa/__init__.py index 5836176..064ab0a 100644 --- a/pybalboa/__init__.py +++ b/pybalboa/__init__.py @@ -1,5 +1,5 @@ """Balboa spa module.""" -__version__ = "1.0.0" +__version__ = "1.0.1" from .client import SpaClient diff --git a/pyproject.toml b/pyproject.toml index cc2ec50..d97bc86 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pybalboa" -version = "1.0.0" +version = "1.0.1" description = "Module to communicate with a Balboa spa wifi adapter." authors = ["Nathan Spencer ","Tim Rightnour "] license = "Apache 2.0" diff --git a/tests/test_init.py b/tests/test_init.py index 1eef763..8e7baa2 100644 --- a/tests/test_init.py +++ b/tests/test_init.py @@ -4,4 +4,4 @@ def test_version() -> None: """Test the version.""" - assert __version__ == "1.0.0" + assert __version__ == "1.0.1"