From e681082ef25f4394ba50c3b7f5352ee8b65f443f Mon Sep 17 00:00:00 2001 From: Guglielmo Celata Date: Sun, 15 Jan 2023 21:44:49 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.3.4=20=E2=86=92=202.3.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.cfg | 2 +- taskmanager/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 3a9ceb2..fd8ad07 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.3.4 +current_version = 2.3.5 commit = True tag = True diff --git a/taskmanager/__init__.py b/taskmanager/__init__.py index d5c6a99..9d5310b 100644 --- a/taskmanager/__init__.py +++ b/taskmanager/__init__.py @@ -1,7 +1,7 @@ """Django application to manage async tasks via admin interface, using uWSGI spooler.""" # PEP 440 - version number format -VERSION = (2, 3, 4) +VERSION = (2, 3, 5) # PEP 396 - module version variable __version__ = ".".join(map(str, VERSION))