summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIb Lundgren <ib.lundgren@gmail.com>2014-11-13 12:39:34 +0000
committerIb Lundgren <ib.lundgren@gmail.com>2014-11-13 12:39:34 +0000
commitfd239fca84644896b1971cf24bc6213d065adb86 (patch)
tree078f0d22e67ea6ffe827b1265a5c4218de3b6b8c
parenta907a90130b5947f6e5d13f7ca90cc86a83ed912 (diff)
downloadoauthlib-fd239fca84644896b1971cf24bc6213d065adb86.tar.gz
0.7.20.7.2
-rw-r--r--CHANGELOG.rst18
-rw-r--r--oauthlib/__init__.py2
2 files changed, 15 insertions, 5 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 29aeadf..87a7aa6 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,6 +1,16 @@
Changelog
=========
+0.7.2:
+
+* (Quick fix) Unpushed locally modified files got included in the PyPI 0.7.1
+ release. Doing a new clean release to address this. Please upgrade quickly
+ and report any issues you are running into.
+
+0.7.1:
+
+* (Quick fix) Add oauthlib.common.log object back in for libraries using it.
+
0.7.0:
* (Change) OAuth2 clients will not raise a Warning on scope change if
@@ -24,7 +34,7 @@ Changelog
0.6.3: Quick fix. OAuth 1 client repr in 0.6.2 overwrote secrets when
scrubbing for print.
-0.6.2:
+0.6.2:
* Numerous OAuth2 provider errors now suggest a status code of 401 instead
of 400 (#247.
@@ -43,7 +53,7 @@ Changelog
* OAuth1 clients now has __repr__ and will be printed with secrets scrubbed.
* OAuth1 Client.get_oauth_params now takes an oauthlib.Request as an argument.
-
+
* urldecode will now raise a much more informative error message on
incorrectly encoded strings.
@@ -76,11 +86,11 @@ Changelog
signature is `headers`, `body`, `status code` where the initial `redirect_uri`
has been relocated to its rightful place inside headers as `Location`.
-* OAuth 1 Access Token Endpoint has a new required validator method
+* OAuth 1 Access Token Endpoint has a new required validator method
`invalidate_request_token`.
* OAuth 1 Authorization Endpoint now returns a 200 response instead of 302 on
- `oob` callbacks.
+ `oob` callbacks.
0.5.1: OAuth 1 provider fix for incorrect token param in nonce validation.
diff --git a/oauthlib/__init__.py b/oauthlib/__init__.py
index 9f18242..300bdc7 100644
--- a/oauthlib/__init__.py
+++ b/oauthlib/__init__.py
@@ -10,7 +10,7 @@
"""
__author__ = 'Idan Gazit <idan@gazit.me>'
-__version__ = '0.7.1'
+__version__ = '0.7.2'
import logging