diff --git a/django_q/__init__.py b/django_q/__init__.py index 32fccd6..799b6f3 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -7,6 +7,6 @@ sys.path.insert(0, myPath) from .tasks import async, schedule, result, fetch from .models import Task, Schedule -VERSION = (0, 3, 1) +VERSION = (0, 3, 2) default_app_config = 'django_q.apps.DjangoQConfig' diff --git a/docs/conf.py b/docs/conf.py index d1d72bb..ee8b868 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -72,7 +72,7 @@ author = 'Ilan Steemers' # The short X.Y version. version = '0.3' # The full version, including alpha/beta/rc tags. -release = '0.3.1' +release = '0.3.2' # 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 6343da9..b9b85eb 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ class PyTest(Command): setup( name='django-q', - version='0.3.1', + version='0.3.2', author='Ilan Steemers', author_email='koed00@gmail.com', keywords='django task queue worker redis multiprocessing',