diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c58f6fd6..d61d0436 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,11 @@ unreleased ---------- nothing yet +0.3.1 (2014-12-16) +------------------ +* Added a new ``session_class`` parameter, so that you can specify a custom + requests.Session subclass with custom behavior. + 0.3.0 (2014-12-15) ------------------ * Changed ``OAuthConsumerMixin.created_on`` to ``OAuthConsumerMixin.created_at``, diff --git a/docs/conf.py b/docs/conf.py index 7ef4f16d..34fd68cb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -58,7 +58,7 @@ # The short X.Y version. version = '0.3' # The full version, including alpha/beta/rc tags. -release = '0.3.0' +release = '0.3.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 117f539a..4dd49ea4 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ def get_requirements(path): setup( name="Flask-Dance", - version="0.3.0", + version="0.3.1", description="Doing the OAuth dance with style using Flask, requests, and oauthlib", long_description=open('README.rst').read(), author="David Baumgold",