diff --git a/pyproject.toml b/pyproject.toml index a80e028..86c55a1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "vivintpy" -version = "2023.2.0" +version = "2023.3.0" description = "Python library for interacting with a Vivint security and smart home system." authors = ["Nathan Spencer "] license = "MIT" diff --git a/tests/test_version.py b/tests/test_version.py index 71e5186..5f6f42a 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -4,4 +4,4 @@ def test_version() -> None: """Test version.""" - assert __version__ == "2023.2.0" + assert __version__ == "2023.3.0" diff --git a/vivintpy/__init__.py b/vivintpy/__init__.py index b2fc6ac..9718949 100644 --- a/vivintpy/__init__.py +++ b/vivintpy/__init__.py @@ -1,2 +1,2 @@ """Provide a package for vivintpy.""" -__version__ = "2023.2.0" +__version__ = "2023.3.0"