From 6ea90d12e1792c8e1cec3ce4d6a91ab57d639f49 Mon Sep 17 00:00:00 2001 From: David Baumgold Date: Tue, 28 Apr 2015 00:19:05 -0400 Subject: [PATCH] version 0.5.1 bugfix release --- CHANGELOG.rst | 4 ++++ docs/conf.py | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b7ce6084..b05c8ff5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,10 @@ Change Log unreleased ---------- +nothing yet + +0.5.1 (2015-04-28) +------------------ * Make the ``authorized`` property on both ``OAuth1Session`` and ``OAuth2Session`` dynamically load the token from the backend diff --git a/docs/conf.py b/docs/conf.py index 197f7640..20a49e95 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -59,7 +59,7 @@ # The short X.Y version. version = '0.5' # The full version, including alpha/beta/rc tags. -release = '0.5.0' +release = '0.5.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 204598c3..af328c7d 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ def get_requirements(path): setup( name="Flask-Dance", - version="0.5.0", + version="0.5.1", description="Doing the OAuth dance with style using Flask, requests, and oauthlib", long_description=open('README.rst').read(), author="David Baumgold",