diff --git a/pylitterbot/__init__.py b/pylitterbot/__init__.py index 30b76ff..32f3a0d 100644 --- a/pylitterbot/__init__.py +++ b/pylitterbot/__init__.py @@ -1,5 +1,5 @@ """pylitterbot module.""" -__version__ = "2022.10.0" +__version__ = "2022.10.1" from .account import Account from .robot import Robot diff --git a/pyproject.toml b/pyproject.toml index a469e34..f84738e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pylitterbot" -version = "2022.10.0" +version = "2022.10.1" 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 57baba9..4abb1bb 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.10.0" + assert __version__ == "2022.10.1"