diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 43552c7..65f1232 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.6 +current_version = 0.0.7 commit = True tag = True tag_name = {new_version} diff --git a/pyproject.toml b/pyproject.toml index 7376698..373a3a1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aio-spamwatch" -version = "0.0.6" +version = "0.0.7" description = "An asynchronous Python wrapper for the SpamWatch API." authors = ["NachABR "] license = "LGPLv3" diff --git a/src/aio_spamwatch/__init__.py b/src/aio_spamwatch/__init__.py index 13292c0..32f45ad 100644 --- a/src/aio_spamwatch/__init__.py +++ b/src/aio_spamwatch/__init__.py @@ -9,7 +9,7 @@ ) from .types import Ban, Permission, Token -__version__ = "0.0.6" +__version__ = "0.0.7" __all__ = ( "SpamWatchAPI", "Ban",