diff --git a/django_q/__init__.py b/django_q/__init__.py index 799b6f30..a02a2c50 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -7,6 +7,6 @@ from .tasks import async, schedule, result, fetch from .models import Task, Schedule -VERSION = (0, 3, 2) +VERSION = (0, 3, 3) default_app_config = 'django_q.apps.DjangoQConfig' diff --git a/docs/conf.py b/docs/conf.py index ee8b8686..4cda9dbf 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -72,7 +72,7 @@ # The short X.Y version. version = '0.3' # The full version, including alpha/beta/rc tags. -release = '0.3.2' +release = '0.3.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index b9b85ebe..ff4ce5f5 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def run(self): setup( name='django-q', - version='0.3.2', + version='0.3.3', author='Ilan Steemers', author_email='koed00@gmail.com', keywords='django task queue worker redis multiprocessing',