From 3b2f444738104d0a166f5c94884d39ec78855848 Mon Sep 17 00:00:00 2001 From: Tim O'Meara Date: Tue, 11 Aug 2020 17:32:08 -0500 Subject: [PATCH] version bump --- django_q/__init__.py | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/django_q/__init__.py b/django_q/__init__.py index c9bce68..16c5550 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -1,4 +1,4 @@ -VERSION = (1, 3, 2) +VERSION = (1, 3, 3) default_app_config = "django_q.apps.DjangoQConfig" diff --git a/pyproject.toml b/pyproject.toml index 4fcf8c3..45fe9af 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-q" -version = "1.3.2" +version = "1.3.3" description = "A multiprocessing distributed task queue for Django" authors = ["Ilan Steemers "] license = "MIT" diff --git a/setup.py b/setup.py index 81e6b10..4bc3586 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ class PyTest(Command): setup( name='django-q', - version='1.3.2', + version='1.3.3', author='Ilan Steemers', author_email='koed00@gmail.com', keywords='django multiprocessing worker scheduler queue',