diff --git a/HISTORY.rst b/HISTORY.rst index e142b1ae..cac5882c 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,24 @@ History ------- +0.3.0 (2017-06-13) +++++++++++++++++++ + +Backwards-incompatible changes: + +* The settings.SITE_URL is no longer used. Instead the absolute URL is + derived from the request's get_host(). +* Only log out by HTTP POST allowed. + +Features: + +* None + +Bugs: + +* Logout using POST not GET (#126) +* Test suite maintenance (#108, #109, #142) + 0.2.0 (2017-06-07) +++++++++++++++++++ diff --git a/mozilla_django_oidc/__init__.py b/mozilla_django_oidc/__init__.py index 7fd229a3..0404d810 100644 --- a/mozilla_django_oidc/__init__.py +++ b/mozilla_django_oidc/__init__.py @@ -1 +1 @@ -__version__ = '0.2.0' +__version__ = '0.3.0' diff --git a/setup.cfg b/setup.cfg index b733a96b..070186b0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.0 +current_version = 0.3.0 commit = True tag = True