diff --git a/CHANGELOG.rst b/CHANGELOG.rst index bcd442e5..f7f9efe4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,10 @@ Change Log unreleased ---------- +Nothing yet + +0.4.0 (2015-02-12) +------------------ * Renamed ``assign_token_to_session`` to ``load_token`` * Added a ``from_config`` dict to OAuthConsumerBlueprint objects. The info in that dict is used to dynamically populate information on the blueprint diff --git a/docs/conf.py b/docs/conf.py index 669f2296..257739ba 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -56,9 +56,9 @@ # built documents. # # The short X.Y version. -version = '0.3' +version = '0.4' # The full version, including alpha/beta/rc tags. -release = '0.3.2' +release = '0.4.0' # 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 49e1622a..ee23fe54 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ def get_requirements(path): setup( name="Flask-Dance", - version="0.3.2", + version="0.4.0", description="Doing the OAuth dance with style using Flask, requests, and oauthlib", long_description=open('README.rst').read(), author="David Baumgold",