From 8200e45bd67fd1865e92a907a2a9aa5229a81960 Mon Sep 17 00:00:00 2001 From: Ilan Date: Sun, 19 Jul 2015 16:25:06 +0200 Subject: [PATCH] Getting ready for 0.4.0 --- django_q/__init__.py | 2 +- docs/conf.py | 4 ++-- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/django_q/__init__.py b/django_q/__init__.py index dc95d776..c6305e35 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -8,6 +8,6 @@ from .models import Task, Schedule, Success, Failure from .cluster import Cluster -VERSION = (0, 3, 6) +VERSION = (0, 4, 0) default_app_config = 'django_q.apps.DjangoQConfig' diff --git a/docs/conf.py b/docs/conf.py index 6a4df63b..211909e6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -70,9 +70,9 @@ # built documents. # # The short X.Y version. -version = '0.3' +version = '0.4' # The full version, including alpha/beta/rc tags. -release = '0.3.6' +release = '0.4.0' # 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 b471de54..d2a8071b 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def run(self): setup( name='django-q', - version='0.3.6', + version='0.4.0', author='Ilan Steemers', author_email='koed00@gmail.com', keywords='django task queue worker redis multiprocessing',