From 51c11d5ac2d70b3036eca9890b3c96bab2b019c8 Mon Sep 17 00:00:00 2001 From: Nathan Spencer Date: Mon, 24 Jun 2024 10:40:23 -0600 Subject: [PATCH] Bump version to 1.0.2 --- 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 e52dba0..5835df1 100644 --- a/pybalboa/__init__.py +++ b/pybalboa/__init__.py @@ -1,6 +1,6 @@ """Balboa spa module.""" -__version__ = "1.0.1" +__version__ = "1.0.2" from .client import SpaClient diff --git a/pyproject.toml b/pyproject.toml index 84b0593..4118a6f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pybalboa" -version = "1.0.1" +version = "1.0.2" description = "Module to communicate with a Balboa spa wifi adapter." authors = ["Nathan Spencer ","Tim Rightnour "] readme = "README.rst" diff --git a/tests/test_init.py b/tests/test_init.py index 70445f7..dbd9851 100644 --- a/tests/test_init.py +++ b/tests/test_init.py @@ -5,4 +5,4 @@ def test_version() -> None: """Test the version.""" - assert __version__ == "1.0.1" + assert __version__ == "1.0.2"