diff --git a/pybalboa/__init__.py b/pybalboa/__init__.py index 9daf388..5836176 100644 --- a/pybalboa/__init__.py +++ b/pybalboa/__init__.py @@ -1,5 +1,5 @@ """Balboa spa module.""" -__version__ = "1.0.0b2" +__version__ = "1.0.0" from .client import SpaClient diff --git a/pyproject.toml b/pyproject.toml index 7343039..e7951e7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pybalboa" -version = "1.0.0b2" +version = "1.0.0" 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 d611d7a..1eef763 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.0b2" + assert __version__ == "1.0.0"