summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 5db4988..ebd96d9 100644
--- a/README.rst
+++ b/README.rst
@@ -62,6 +62,8 @@ Changelog
*OAuthLib is in active development, with most of OAuth1 complete and OAuth2
already in the works.*
+0.4.1: Documentation corrections and various small code fixes.
+
0.4.0: OAuth 2 Provider support (experimental).
0.3.8: OAuth 2 Client now uses custom errors and raise on expire
diff --git a/docs/conf.py b/docs/conf.py
index 941ccf4..ec57959 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.1'
+version = '0.4'
# The full version, including alpha/beta/rc tags.
-release = '0.1.0'
+release = '0.4.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 e1c7b7e..b6009bc 100755
--- a/setup.py
+++ b/setup.py
@@ -24,7 +24,7 @@ requires = []
setup(
name='oauthlib',
- version='0.4.0',
+ version='0.4.1',
description='A generic, spec-compliant, thorough implementation of the OAuth request-signing logic',
long_description=fread('README.rst'),
author='Idan Gazit',