diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ee22bef..08f057d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.6 +current_version = 0.3.7 commit = True tag = True diff --git a/eztaskmanager/__init__.py b/eztaskmanager/__init__.py index ea30998..2e2159f 100644 --- a/eztaskmanager/__init__.py +++ b/eztaskmanager/__init__.py @@ -1,7 +1,7 @@ """Django application to manage async tasks via admin interface.""" # PEP 440 - version number format -VERSION = (0, 3, 6) +VERSION = (0, 3, 7) # PEP 396 - module version variable __version__ = ".".join(map(str, VERSION)) diff --git a/pyproject.toml b/pyproject.toml index 047c0b5..19e722d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-eztaskmanager" -version = "0.3.6" +version = "0.3.7" packages = [{include = "eztaskmanager"}] description = "Django application that allows the management of scheduled, long, asynchronous tasks." license = "MIT License"