From 0e8f480e9c9a91ab3dc8017de70f59014e66664d Mon Sep 17 00:00:00 2001 From: Hsiaoming Yang Date: Tue, 28 Jan 2025 22:04:22 +0900 Subject: [PATCH] chore: release 1.4.1 --- authlib/consts.py | 2 +- docs/changelog.rst | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/authlib/consts.py b/authlib/consts.py index f2efce3b..fd273993 100644 --- a/authlib/consts.py +++ b/authlib/consts.py @@ -1,5 +1,5 @@ name = 'Authlib' -version = '1.4.0' +version = '1.4.1' 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 504054f2..77ae1c5d 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -6,6 +6,14 @@ Changelog Here you can see the full list of changes between each Authlib release. +Version 1.4.1 +------------- + +**Released on Jan 28, 2025** + +- Improve garbage collection on OAuth clients. :issue:`698` +- Fix client parameters for httpx. :issue:`694` + Version 1.4.0 -------------