From 4fd0929fba4a91b304ee16f1a870fa7064e0af8e Mon Sep 17 00:00:00 2001 From: Hsiaoming Yang Date: Sun, 11 Feb 2018 22:09:41 +0900 Subject: [PATCH] Version bump 0.5.1 --- authlib/consts.py | 2 +- docs/changelog.rst | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/authlib/consts.py b/authlib/consts.py index fbf1bfa9..a3220582 100644 --- a/authlib/consts.py +++ b/authlib/consts.py @@ -1,5 +1,5 @@ name = 'Authlib' -version = '0.5' +version = '0.5.1' author = 'Hsiaoming Yang ' homepage = 'https://authlib.org/' default_user_agent = '{}/{} (+{})'.format(name, version, homepage) diff --git a/docs/changelog.rst b/docs/changelog.rst index 07f6c26d..aed66f71 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -7,6 +7,16 @@ Changelog Here you can see the full list of changes between each Authlib release. +Version 0.5.1 +------------- + +**Released on Feb 11, 2018.** + +Just a quick bug fix release. + +- Fixed ``OAuth2Session.request`` with auth. + + Version 0.5: Kirie ------------------