From 588921322ed408776bfa34b0c3685127ffb5ea83 Mon Sep 17 00:00:00 2001 From: John Giannelos Date: Tue, 13 Jun 2017 23:04:38 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.2.0=20=E2=86=92=200.3.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HISTORY.rst | 18 ++++++++++++++++++ mozilla_django_oidc/__init__.py | 2 +- setup.cfg | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) 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