From 08e768dd2466ad2a36400a8b005afe1afcae2d2a Mon Sep 17 00:00:00 2001 From: Snehil Kishore Date: Thu, 9 Apr 2026 16:43:59 +0530 Subject: [PATCH 1/2] Release 5.3.0 --- .version | 2 +- CHANGELOG.md | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.version b/.version index 7cbea073..e230c839 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -5.2.0 \ No newline at end of file +5.3.0 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 8dbe4a77..061116ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## [5.3.0](https://github.com/auth0/auth0-python/tree/5.3.0) (2026-04-09) +[Full Changelog](https://github.com/auth0/auth0-python/compare/5.2.0...5.3.0) + +**Added** +- feat: Add CIMD support, organization connections, group deletion, refresh token listing; remove AOL/Flickr/Yammer providers [\#816](https://github.com/auth0/auth0-python/pull/816) ([fern-api[bot]](https://github.com/apps/fern-api)) +- feat:Add `Auth0-Custom-Domain` header support for Multiple Custom Domains (MCD) [\#799](https://github.com/auth0/auth0-python/pull/799) ([kishore7snehil](https://github.com/kishore7snehil)) + ## [5.2.0](https://github.com/auth0/auth0-python/tree/5.2.0) (2026-03-30) [Full Changelog](https://github.com/auth0/auth0-python/compare/5.1.0...5.2.0) From 94065cfa2838bb701a2babab4652ecd369853462 Mon Sep 17 00:00:00 2001 From: Snehil Kishore Date: Thu, 9 Apr 2026 18:26:44 +0530 Subject: [PATCH 2/2] chore: Update .shiprc to include .version file and ensure proper versioning in pyproject.toml --- .shiprc | 3 ++- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.shiprc b/.shiprc index ce24dbdd..626233e7 100644 --- a/.shiprc +++ b/.shiprc @@ -1,6 +1,7 @@ { "files": { - ".version": [] + ".version": [], + "pyproject.toml": ["version = \"{MAJOR}.{MINOR}.{PATCH}\""] }, "prefixVersion": false } diff --git a/pyproject.toml b/pyproject.toml index 0e760054..eabea62d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "auth0-python" [tool.poetry] name = "auth0-python" -version = "5.2.0" +version = "5.3.0" description = "Auth0 Python SDK - Management and Authentication APIs" readme = "README.md" authors = ["Auth0 "]