From 0c3ed48e9a3f485790ce66ca4a2ec9292692aed5 Mon Sep 17 00:00:00 2001 From: Nathan Spencer Date: Fri, 26 Aug 2022 15:02:22 -0600 Subject: [PATCH] Bump version to 2022.8.1 (#28) --- 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 3d11df3..c6ca901 100644 --- a/pylitterbot/__init__.py +++ b/pylitterbot/__init__.py @@ -1,5 +1,5 @@ """pylitterbot module.""" -__version__ = "2022.8.0" +__version__ = "2022.8.1" from .account import Account from .robot import Robot diff --git a/pyproject.toml b/pyproject.toml index 29d9a1e..4fedbad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pylitterbot" -version = "2022.8.0" +version = "2022.8.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 ca61c27..9e41fe9 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -4,4 +4,4 @@ def test_version() -> None: """Test the version.""" - assert __version__ == "2022.8.0" + assert __version__ == "2022.8.1"