summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Huot <JonathanHuot@users.noreply.github.com>2022-09-09 22:01:18 +0200
committerGitHub <noreply@github.com>2022-09-09 22:01:18 +0200
commit4a4d65f8eeecfe7d778269466871c5c15fe9c1bc (patch)
tree94317653856049b4049969500c831acdfb727d5f
parent2e40b412c844ecc4673c3fa3f72181f228bdbacd (diff)
parent88bb1562930a9bd9368bf26120655794d90d9585 (diff)
downloadoauthlib-4a4d65f8eeecfe7d778269466871c5c15fe9c1bc.tar.gz
Merge pull request #832 from oauthlib/3.2.1
Prepare 3.2.1 release
-rw-r--r--AUTHORS7
-rw-r--r--CHANGELOG.rst13
-rw-r--r--oauthlib/__init__.py2
3 files changed, 21 insertions, 1 deletions
diff --git a/AUTHORS b/AUTHORS
index c820d6d..0c62245 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -49,3 +49,10 @@ Scott Gifford
Hugo van Kemenade
Richard Connon
Karim Kanso
+Kian-Meng Ang
+Tim Gates
+Dariusz Smigiel
+Nemanja Tozic
+Kohki Yamagiwa
+Arie Bovenberg
+Sebastian Chnelik
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index a295568..9e15010 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,6 +1,19 @@
Changelog
=========
+3.2.1 (2022-09-09)
+------------------
+OAuth2.0 Provider:
+* #803: Metadata endpoint support of non-HTTPS
+* CVE-2022-36087
+
+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())