From ebe6fc1ffe7d50057389864fa9f89d461768de88 Mon Sep 17 00:00:00 2001 From: Nathan Spencer Date: Thu, 8 Sep 2022 09:27:20 -0600 Subject: [PATCH] Release 2022.9.1 --- pylitterbot/__init__.py | 2 +- pyproject.toml | 2 +- tests/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pylitterbot/__init__.py b/pylitterbot/__init__.py index 4f782fc..ac8daf2 100644 --- a/pylitterbot/__init__.py +++ b/pylitterbot/__init__.py @@ -1,5 +1,5 @@ """pylitterbot module.""" -__version__ = "2022.9.0" +__version__ = "2022.9.1" from .account import Account from .robot import Robot diff --git a/pyproject.toml b/pyproject.toml index 53f505b..32d7a66 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pylitterbot" -version = "2022.9.0" +version = "2022.9.1" description = "Python package for controlling Whisker automatic robots." authors = ["Nathan Spencer "] license = "MIT" diff --git a/tests/__init__.py b/tests/__init__.py index c261a68..61a0fc6 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -4,4 +4,4 @@ def test_version() -> None: """Test the version.""" - assert __version__ == "2022.9.0" + assert __version__ == "2022.9.1"