From 939f0cbf7ee4b53c270968e9a6a41bac27aaa568 Mon Sep 17 00:00:00 2001 From: Ben Lopatin Date: Fri, 17 Feb 2017 09:51:04 -0500 Subject: [PATCH] Version bump 0.9.0 --- HISTORY.rst | 9 +++++++++ docs/conf.py | 4 ++-- organizations/__init__.py | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 1a269664..531bd37f 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,15 @@ History ======= +0.9.0 +----- + +* Add notification to users when added to an organization +* New abstract models create separation between 'plain' base models and abstract + models that include abstracted functionality previously included only in + concrete models +* Python 3.6 and Django 1.11 test support + 0.8.2 ----- diff --git a/docs/conf.py b/docs/conf.py index b0f3de5a..adcb3521 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,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.2' +release = '0.9.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 77672763..05fe33f4 100644 --- a/organizations/__init__.py +++ b/organizations/__init__.py @@ -26,7 +26,7 @@ __author__ = 'Ben Lopatin' __email__ = 'ben@wellfire.co' -__version__ = '0.8.2' +__version__ = '0.9.0' default_app_config = 'organizations.apps.OrganizationsConfig'