From 2e1a27f442ff0d382ea615418a95eafbe2c2f671 Mon Sep 17 00:00:00 2001 From: Nathan Spencer Date: Sun, 29 Jan 2023 13:53:11 -0700 Subject: [PATCH] Update version to 1.0.0 for release --- pybalboa/__init__.py | 2 +- pyproject.toml | 2 +- tests/test_init.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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"