diff --git a/pylitterbot/__init__.py b/pylitterbot/__init__.py index 6cb6430..3d12f8d 100644 --- a/pylitterbot/__init__.py +++ b/pylitterbot/__init__.py @@ -1,5 +1,5 @@ """pylitterbot module.""" -__version__ = "2022.12.0" +__version__ = "2023.1.0" from .account import Account from .robot import Robot diff --git a/pyproject.toml b/pyproject.toml index 6c80922..24a4e96 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pylitterbot" -version = "2022.12.0" +version = "2023.1.0" description = "Python package for controlling Whisker automatic robots." authors = ["Nathan Spencer "] license = "MIT" diff --git a/tests/test_init.py b/tests/test_init.py index 72d464e..397cca2 100644 --- a/tests/test_init.py +++ b/tests/test_init.py @@ -4,4 +4,4 @@ def test_version() -> None: """Test the version.""" - assert __version__ == "2022.12.0" + assert __version__ == "2023.1.0"