diff options
-rw-r--r-- | README.rst | 2 | ||||
-rw-r--r-- | docs/conf.py | 4 | ||||
-rwxr-xr-x | setup.py | 2 |
3 files changed, 5 insertions, 3 deletions
@@ -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. @@ -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', |