diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ea79adb..c118248 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.1 +current_version = 0.4.2 commit = True tag = True diff --git a/eztaskmanager/__init__.py b/eztaskmanager/__init__.py index 54a039a..016bc7a 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, 4, 1) +VERSION = (0, 4, 2) # PEP 396 - module version variable __version__ = ".".join(map(str, VERSION)) diff --git a/pyproject.toml b/pyproject.toml index 18ceec9..e5acab8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-eztaskmanager" -version = "0.4.1" +version = "0.4.2" packages = [{include = "eztaskmanager"}] description = "Django application that allows the management of scheduled, long, asynchronous tasks." license = "MIT License"