diff --git a/HISTORY.rst b/HISTORY.rst index f3351965..265aeac3 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,11 @@ History ======= +0.9.2 +----- + +* Decouple concrete organizations.Organization model from the invitation/registration backends + 0.9.1 ----- diff --git a/docs/conf.py b/docs/conf.py index 2406d8df..441b3110 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,7 +50,7 @@ # The short X.Y version. version = '0.9' # The full version, including alpha/beta/rc tags. -release = '0.9.1' +release = '0.9.2' # 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 9cbd29da..9ebcf4ad 100644 --- a/organizations/__init__.py +++ b/organizations/__init__.py @@ -26,7 +26,7 @@ __author__ = 'Ben Lopatin' __email__ = 'ben@wellfire.co' -__version__ = '0.9.1' +__version__ = '0.9.2' default_app_config = 'organizations.apps.OrganizationsConfig'