summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Huot <jonathan.huot@gmail.com>2022-09-06 22:50:02 +0200
committerJonathan Huot <jonathan.huot@gmail.com>2022-09-06 22:50:02 +0200
commit1a45d9790543673208e603e13a7be4aa4cba7339 (patch)
tree13b100cbf3709c63ccae95b149472034a21496ec
parent0adbbe10ed8ef822d1c780987fffc56670ce3f9f (diff)
downloadoauthlib-1a45d9790543673208e603e13a7be4aa4cba7339.tar.gz
Prepare 3.2.1 release
-rw-r--r--AUTHORS6
-rw-r--r--CHANGELOG.rst12
-rw-r--r--oauthlib/__init__.py2
3 files changed, 19 insertions, 1 deletions
diff --git a/AUTHORS b/AUTHORS
index c820d6d..f87eb30 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -49,3 +49,9 @@ Scott Gifford
Hugo van Kemenade
Richard Connon
Karim Kanso
+Kian-Meng Ang
+Tim Gates
+Dariusz Smigiel
+Nemanja Tozic
+Kohki Yamagiwa
+Arie Bovenberg
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index a295568..3820043 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,6 +1,18 @@
Changelog
=========
+3.2.1 (2022-09-06)
+------------------
+OAuth2.0 Provider:
+* #803: Metadata endpoint support of non-HTTPS
+
+OAuth1.0:
+* #818: Allow IPv6 being parsed by signature
+
+General:
+* Improved and fixed documentation warnings.
+* Cosmetic changes based on isort
+
3.2.0 (2022-01-29)
------------------
OAuth2.0 Client:
diff --git a/oauthlib/__init__.py b/oauthlib/__init__.py
index 5dbffc9..9b7eff2 100644
--- a/oauthlib/__init__.py
+++ b/oauthlib/__init__.py
@@ -12,7 +12,7 @@ import logging
from logging import NullHandler
__author__ = 'The OAuthlib Community'
-__version__ = '3.2.0'
+__version__ = '3.2.1'
logging.getLogger('oauthlib').addHandler(NullHandler())