Skip to content

Commit

Permalink
Updates version and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Koed00 committed Jan 8, 2018
1 parent 96d7082 commit e225466
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -31,7 +31,7 @@ Requirements
- `Arrow <https://github.com/crsmithdev/arrow>`__
- `Blessed <https://github.com/jquast/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
~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion django_q/__init__.py
Expand Up @@ -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'

Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Expand Up @@ -62,17 +62,17 @@

# 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
# |version| and |release|, also used in various other places throughout the
# 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.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Expand Up @@ -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:

Expand Down
7 changes: 4 additions & 3 deletions docs/install.rst
Expand Up @@ -32,7 +32,7 @@ Django Q is tested for Python 2.7 and 3.6
- `Django <https://www.djangoproject.com>`__

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 <https://github.com/gintas/django-picklefield>`__

Expand Down Expand Up @@ -92,6 +92,7 @@ Extras
- `django-q-rollbar <https://github.com/danielwelch/django-q-rollbar>`__ is a Rollbar error reporter::

$ pip install django-q[rollbar]

- `django-q-sentry <https://github.com/danielwelch/django-q-sentry>`__ is a Sentry error reporter::

$ pip install django-q[sentry]
Expand Down Expand Up @@ -138,9 +139,9 @@ You can reference the `requirements <https://github.com/Koed00/django-q/blob/mas
Django
~~~~~~
We strive to be compatible with last two major version of Django.
At the moment this means we support the 1.8.18 LTS, 1.10.8 and 1.11.6 releases.
At the moment this means we support the 1.8.18 LTS, 1.11.9 and 2.0 releases.

You might find that Django Q still works fine with Django 1.7 and 1.9, but new releases are no longer tested for it.
You might find that Django Q still works fine with Django 1.7,1.9 and 1.10, but new releases are no longer tested for it.



2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -26,7 +26,7 @@ def run(self):

setup(
name='django-q',
version='0.8.1',
version='0.9.0',
author='Ilan Steemers',
author_email='koed0@gmail.com',
keywords='django distributed task queue worker scheduler cron redis disque ironmq sqs orm mongodb multiprocessing rollbar',
Expand Down

0 comments on commit e225466

Please sign in to comment.