diff --git a/django_q/__init__.py b/django_q/__init__.py index ffd772a..2a29cb3 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, schedule -VERSION = (0, 1, 3) +VERSION = (0, 1, 4) default_app_config = 'django_q.apps.DjangoQConfig' diff --git a/setup.py b/setup.py index 5ac95b8..64917e4 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ class PyTest(Command): setup( name='django-q', - version='0.1.3', + version='0.1.4', author='Ilan Steemers', author_email='koed00@gmail.com', packages=['django_q'],