From e22546672e18bfab4ff23c9973c2e87eddf744b5 Mon Sep 17 00:00:00 2001 From: ilan Date: Mon, 8 Jan 2018 15:33:04 +0100 Subject: [PATCH] Updates version and docs --- README.rst | 2 +- django_q/__init__.py | 2 +- docs/conf.py | 6 +++--- docs/index.rst | 2 +- docs/install.rst | 7 ++++--- setup.py | 2 +- 6 files changed, 11 insertions(+), 10 deletions(-) diff --git a/README.rst b/README.rst index 2f326ff0..736228cd 100644 --- a/README.rst +++ b/README.rst @@ -31,7 +31,7 @@ Requirements - `Arrow `__ - `Blessed `__ -Tested with: Python 2.7 & 3.6. Django 1.8.18, 1.10.8 and 1.11.6 +Tested with: Python 2.7 & 3.6. Django 1.8.18, 1.11.9 and 2.0 Brokers ~~~~~~~ diff --git a/django_q/__init__.py b/django_q/__init__.py index 0de1065a..abed3384 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -5,7 +5,7 @@ myPath = os.path.dirname(os.path.abspath(__file__)) sys.path.insert(0, myPath) -VERSION = (0, 8, 1) +VERSION = (0, 9, 0) default_app_config = 'django_q.apps.DjangoQConfig' diff --git a/docs/conf.py b/docs/conf.py index 682be845..0fe8643c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -62,7 +62,7 @@ # General information about the project. project = 'Django Q' -copyright = '2015, Ilan Steemers' +copyright = '2015-2018, Ilan Steemers' author = 'Ilan Steemers' # The version info for the project you're documenting, acts as replacement for @@ -70,9 +70,9 @@ # built documents. # # The short X.Y version. -version = '0.8' +version = '0.9' # The full version, including alpha/beta/rc tags. -release = '0.8.1' +release = '0.9.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/index.rst b/docs/index.rst index 42896d8f..df5959ee 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -24,7 +24,7 @@ Features - Rollbar and Sentry support -Django Q is tested with: Python 2.7 & 3.6. Django 1.8.18 LTS, 1.10.8 and 1.11.6 +Django Q is tested with: Python 2.7 & 3.6. Django 1.8.18 LTS, 1.11.9 and 2.0 Contents: diff --git a/docs/install.rst b/docs/install.rst index 9f4621f6..360319b3 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -32,7 +32,7 @@ Django Q is tested for Python 2.7 and 3.6 - `Django `__ Django Q aims to use as much of Django's standard offerings as possible - The code is tested against Django versions `1.8.18 LTS`, `1.10.8` and `1.11.6`. + The code is tested against Django versions `1.8.18 LTS`, `1.11.9` and `2.0`. - `Django-picklefield `__ @@ -92,6 +92,7 @@ Extras - `django-q-rollbar `__ is a Rollbar error reporter:: $ pip install django-q[rollbar] + - `django-q-sentry `__ is a Sentry error reporter:: $ pip install django-q[sentry] @@ -138,9 +139,9 @@ You can reference the `requirements