From e43e64605c384fd4f4945d4e5c3b5c36e93d29c9 Mon Sep 17 00:00:00 2001 From: Nathan Spencer Date: Wed, 11 Jan 2023 10:12:57 -0700 Subject: [PATCH] Release 2023.1.1 --- README.md | 4 ++-- pylitterbot/__init__.py | 2 +- pyproject.toml | 2 +- tests/test_init.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 4667441..c164950 100644 --- a/README.md +++ b/README.md @@ -5,9 +5,9 @@ # pylitterbot -Python package for controlling a Whisker connected self-cleaning litter boxes and feeders. +Python package for controlling Whisker connected self-cleaning litter boxes and feeders. -This is an unofficial API for controlling various Whisker automated robots. It currently supports Litter-Robot 3, Litter-Robot 4 and Feeder-Robot. +This is an unofficial API for controlling various Whisker automated robots. It currently supports Litter-Robot 3 (with connect), Litter-Robot 4 and Feeder-Robot. ## Disclaimer diff --git a/pylitterbot/__init__.py b/pylitterbot/__init__.py index 3d12f8d..1c48f05 100644 --- a/pylitterbot/__init__.py +++ b/pylitterbot/__init__.py @@ -1,5 +1,5 @@ """pylitterbot module.""" -__version__ = "2023.1.0" +__version__ = "2023.1.1" from .account import Account from .robot import Robot diff --git a/pyproject.toml b/pyproject.toml index fe4b988..73fa88f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pylitterbot" -version = "2023.1.0" +version = "2023.1.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 397cca2..46e53bd 100644 --- a/tests/test_init.py +++ b/tests/test_init.py @@ -4,4 +4,4 @@ def test_version() -> None: """Test the version.""" - assert __version__ == "2023.1.0" + assert __version__ == "2023.1.1"