Bumped to version 0.9

This commit is contained in:
Bob Cribbs 2015-11-11 18:18:01 +02:00
parent 3b5ebfd4c5
commit a6cd4d080a
3 changed files with 12 additions and 4 deletions

View file

@ -52,6 +52,13 @@ html version using the setup.py::
Changelog:
==========
0.9 (2015-11-11):
-----------------
* Added support for Django 1.7 and 1.8
* Dropped support for Django 1.3
0.8 (2013-12-20):
-----------------

View file

@ -11,7 +11,8 @@
# All configuration values have a default; values that are commented out
# serve to show the default.
import sys, os
import os
import sys
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
@ -46,10 +47,10 @@ copyright = u'2009, the django-authority team'
# built documents.
#
# The short X.Y version.
version = '0.8'
version = '0.9'
# The full version, including alpha/beta/rc tags.
release = '0.8dev'
release = '0.9dev'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View file

@ -7,7 +7,7 @@ def read(fname):
setup(
name='django-authority',
version='0.8',
version='0.9',
description=(
"A Django app that provides generic per-object-permissions "
"for Django's auth app."