diff --git a/HISTORY.rst b/HISTORY.rst index d0387638..055d10cc 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,11 @@ History ======= +0.8.0 +----- + +* Adds Django 1.10 support + 0.7.0 ----- diff --git a/README.rst b/README.rst index 6e75e52d..5f81bb97 100644 --- a/README.rst +++ b/README.rst @@ -3,7 +3,7 @@ django-organizations ==================== :Info: Groups and multi-user account management -:Version: 0.7.0 +:Version: 0.8.0 :Author: Ben Lopatin (http://benlopatin.com) .. image:: https://secure.travis-ci.org/bennylope/django-organizations.svg?branch=master diff --git a/docs/conf.py b/docs/conf.py index fd15ae3a..28bb6879 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = '0.7' +version = '0.8' # The full version, including alpha/beta/rc tags. -release = '0.7.0' +release = '0.8.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/organizations/__init__.py b/organizations/__init__.py index 10c4f881..66e56575 100644 --- a/organizations/__init__.py +++ b/organizations/__init__.py @@ -26,7 +26,7 @@ __author__ = 'Ben Lopatin' __email__ = 'ben@wellfire.co' -__version__ = '0.7.0' +__version__ = '0.8.0' default_app_config = 'organizations.apps.OrganizationsConfig'