diff options
| author | Omer Katz <omer.drow@gmail.com> | 2015-08-10 11:30:37 +0300 |
|---|---|---|
| committer | Omer Katz <omer.drow@gmail.com> | 2015-08-10 11:30:37 +0300 |
| commit | db40f9989545fc170960f692bedd3c8ba2cf0642 (patch) | |
| tree | 5cca5f021af0c4a6dd2aad4e5df791039f2adf08 | |
| parent | 1b0de72791f939f145500e7a2ff98af9cb074e9e (diff) | |
| download | oauthlib-1.0.2.tar.gz | |
Updated changelog and bumped version to 1.0.2.1.0.2
| -rw-r--r-- | CHANGELOG.rst | 5 | ||||
| -rw-r--r-- | oauthlib/__init__.py | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5dc4202..75bea04 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,11 @@ Changelog ========= +1.0.2 (2015-08-10) +------------------ +* (Fix) Allow client secret to be null for public applications that do not mandate it's specification in the query parameters. +* (Fix) Encode request body before hashing in order to prevent encoding errors in Python 3. + 1.0.1 (2015-07-27) ------------------ * (Fix) Added token_type_hint to the list of default Request parameters. diff --git a/oauthlib/__init__.py b/oauthlib/__init__.py index 7ceb21e..997a5d0 100644 --- a/oauthlib/__init__.py +++ b/oauthlib/__init__.py @@ -10,7 +10,7 @@ """ __author__ = 'Idan Gazit <idan@gazit.me>' -__version__ = '1.0.1' +__version__ = '1.0.2' import logging |
