summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.rst2
-rw-r--r--docs/conf.py2
-rwxr-xr-xsetup.py2
3 files changed, 4 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index 203c54b..56f50c0 100644
--- a/README.rst
+++ b/README.rst
@@ -75,6 +75,8 @@ Changelog
*OAuthLib is in active development, with most of OAuth1 complete and OAuth2
already in the works.*
+0.4.2: OAuth 2 draft to RFC. Removed OAuth 2 framework decorators.
+
0.4.1: Documentation corrections and various small code fixes.
0.4.0: OAuth 2 Provider support (experimental).
diff --git a/docs/conf.py b/docs/conf.py
index ec57959..6d6a59c 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -50,7 +50,7 @@ copyright = u'2012, Idan Gazit and the Python Community'
# The short X.Y version.
version = '0.4'
# The full version, including alpha/beta/rc tags.
-release = '0.4.1'
+release = '0.4.2'
# 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 b6009bc..7dbd563 100755
--- a/setup.py
+++ b/setup.py
@@ -24,7 +24,7 @@ requires = []
setup(
name='oauthlib',
- version='0.4.1',
+ version='0.4.2',
description='A generic, spec-compliant, thorough implementation of the OAuth request-signing logic',
long_description=fread('README.rst'),
author='Idan Gazit',