From a30e5d2c286d718a8a3d97dabb17fae92886cee9 Mon Sep 17 00:00:00 2001 From: Ilan Steemers Date: Thu, 17 Sep 2015 20:19:20 +0200 Subject: [PATCH] v0.7.2 --- django_q/__init__.py | 2 +- docs/conf.py | 4 ++-- setup.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/django_q/__init__.py b/django_q/__init__.py index b4ae147..902a479 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -9,6 +9,6 @@ from .models import Task, Schedule, Success, Failure from .cluster import Cluster from .status import Stat -VERSION = (0, 7, 1) +VERSION = (0, 7, 2) default_app_config = 'django_q.apps.DjangoQConfig' diff --git a/docs/conf.py b/docs/conf.py index 94f5c11..ef68132 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -72,7 +72,7 @@ author = 'Ilan Steemers' # The short X.Y version. version = '0.7' # The full version, including alpha/beta/rc tags. -release = '0.7.1' +release = '0.7.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -302,7 +302,7 @@ man_pages = [ # dir menu entry, description, category) texinfo_documents = [ (master_doc, 'DjangoQ', 'Django Q Documentation', - author, 'DjangoQ', 'One line description of project.', + author, 'DjangoQ', 'A multiprocessing distributed task queue for Django.', 'Miscellaneous'), ] diff --git a/setup.py b/setup.py index d486c9f..74fec41 100644 --- a/setup.py +++ b/setup.py @@ -26,9 +26,9 @@ class PyTest(Command): setup( name='django-q', - version='0.7.1', + version='0.7.2', author='Ilan Steemers', - author_email='koed00@gmail.com', + author_email='koed0@gmail.com', keywords='django distributed task queue worker redis disque ironmq sqs orm multiprocessing', packages=['django_q'], include_package_data=True,