diff --git a/authlib/consts.py b/authlib/consts.py index 0eff0669..157a2de0 100644 --- a/authlib/consts.py +++ b/authlib/consts.py @@ -1,5 +1,5 @@ name = 'Authlib' -version = '1.3.1' +version = '1.3.2' author = 'Hsiaoming Yang ' homepage = 'https://authlib.org/' default_user_agent = f'{name}/{version} (+{homepage})' diff --git a/docs/changelog.rst b/docs/changelog.rst index bd7892ec..03c6cdd7 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -6,6 +6,13 @@ Changelog Here you can see the full list of changes between each Authlib release. +Version 1.3.2 +------------- + +- Prevent ever-growing session size for OAuth clients. +- Revert ``quote`` client id and secret. +- ``unquote`` basic auth header for authorization server. + Version 1.3.1 -------------