summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIb Lundgren <ib.lundgren@gmail.com>2013-07-09 18:11:58 +0100
committerIb Lundgren <ib.lundgren@gmail.com>2013-07-09 18:11:58 +0100
commit809646f84cd2f0941773ce99acc95ea216ea1cb8 (patch)
tree5a8ae7888f1f7edad3166a76f7f43789fb205fba
parent9169c7d9a7b2651275adf64136b175cad787724e (diff)
downloadoauthlib-809646f84cd2f0941773ce99acc95ea216ea1cb8.tar.gz
0.5.00.5.0
-rw-r--r--README.rst2
-rw-r--r--docs/conf.py4
-rwxr-xr-xsetup.py2
3 files changed, 5 insertions, 3 deletions
diff --git a/README.rst b/README.rst
index 471586a..3bb55c6 100644
--- a/README.rst
+++ b/README.rst
@@ -90,6 +90,8 @@ Changelog
*OAuthLib is in active development, with most of OAuth1 complete and OAuth2
already in the works.*
+0.5.0: OAuth 1 provider refactor. OAuth 2 refresh token validation fix.
+
0.4.2: OAuth 2 draft to RFC. Removed OAuth 2 framework decorators.
0.4.1: Documentation corrections and various small code fixes.
diff --git a/docs/conf.py b/docs/conf.py
index 6d6a59c..0f88bfb 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -48,9 +48,9 @@ copyright = u'2012, Idan Gazit and the Python Community'
# built documents.
#
# The short X.Y version.
-version = '0.4'
+version = '0.5'
# The full version, including alpha/beta/rc tags.
-release = '0.4.2'
+release = '0.5.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 d079e07..242b841 100755
--- a/setup.py
+++ b/setup.py
@@ -26,7 +26,7 @@ requires = []
setup(
name='oauthlib',
- version='0.4.2',
+ version='0.5.0',
description='A generic, spec-compliant, thorough implementation of the OAuth request-signing logic',
long_description=fread('README.rst'),
author='Idan Gazit',