diff --git a/django_q/__init__.py b/django_q/__init__.py index 20c5d25..8a58640 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -1,7 +1,7 @@ from django_q.models import Task, Schedule from django_q.core import async -VERSION = (0, 1, 0) +VERSION = (0, 1, 1) default_app_config = 'django_q.apps.DjangoQConfig' diff --git a/setup.py b/setup.py index 3c9530a..ae4346b 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ class PyTest(Command): setup( name='django-q', - version='0.1.0', + version='0.1.1', author='Ilan Steemers', author_email='koed00@gmail.com', packages=['django_q'],