From e13fcfe18571373bb08e954a3e4ff53566773e53 Mon Sep 17 00:00:00 2001 From: David Baumgold Date: Wed, 18 May 2016 07:31:42 -0400 Subject: [PATCH] v0.8.3 --- CHANGELOG.rst | 8 ++++++++ flask_dance/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 26994b55..a11d9f34 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,12 @@ unreleased ---------- Nothing yet +0.8.3 (2016-05-18) +------------------ +* Fixed an error that occurred if you were running an unreleased version + of Flask, due to the version comparison code. See `issue 53`_. + Thanks, @ThiefMaster! + 0.8.2 (2015-12-30) ------------------ * If the OAuth 1 token request is denied on accessing the login view, @@ -160,3 +166,5 @@ Nothing yet 0.1 (2014-09-15) ---------------- * Initial release + +.. _issue 53: https://github.com/singingwolfboy/flask-dance/issues/53 diff --git a/flask_dance/__init__.py b/flask_dance/__init__.py index 38d3f815..955083d4 100644 --- a/flask_dance/__init__.py +++ b/flask_dance/__init__.py @@ -3,4 +3,4 @@ from .consumer import OAuth1ConsumerBlueprint, OAuth2ConsumerBlueprint -__version__ = "0.8.2" +__version__ = "0.8.3"