diff --git a/README.rst b/README.rst index 93f836f..d856690 100644 --- a/README.rst +++ b/README.rst @@ -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): ----------------- diff --git a/docs/conf.py b/docs/conf.py index 08dd939..1897bc5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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. diff --git a/setup.py b/setup.py index 502751b..45ca363 100644 --- a/setup.py +++ b/setup.py @@ -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."