From 2f55b7f0efcba52f4c7d3a8042e601d372a52f5e Mon Sep 17 00:00:00 2001 From: Snehil Kishore Date: Thu, 9 Apr 2026 19:18:38 +0530 Subject: [PATCH] chore: fix PEP 440 version format and update Ship config - Fix version strings from `1.0.0.b7` to `1.0.0b7` (PEP 440 requires no dot before pre-release segment) in pyproject.toml and CHANGELOG.md - Add pyproject.toml version pattern to .shiprc so releases update it - Remove DPoP Early Access notice from README (feature is now GA) --- .shiprc | 3 ++- CHANGELOG.md | 12 ++++++------ README.md | 3 --- pyproject.toml | 2 +- 4 files changed, 9 insertions(+), 11 deletions(-) diff --git a/.shiprc b/.shiprc index ce24dbd..de867c4 100644 --- a/.shiprc +++ b/.shiprc @@ -1,6 +1,7 @@ { "files": { - ".version": [] + ".version": [], + "pyproject.toml": ["version = \"{MAJOR}.{MINOR}.{PATCH}{PRERELEASE_LABEL}{PRERELEASE_COUNTER}\""] }, "prefixVersion": false } diff --git a/CHANGELOG.md b/CHANGELOG.md index 716eda4..359f57d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,25 +1,25 @@ # Change Log -## [1.0.0.b7](https://github.com/auth0/auth0-api-python/tree/1.0.0b7) (2026-04-02) +## [1.0.0b7](https://github.com/auth0/auth0-api-python/tree/1.0.0b7) (2026-04-02) [Full Changelog](https://github.com/auth0/auth0-api-python/compare/1.0.0b6...1.0.0b7) **Changed** - chore: bump ada-url for Python 3.14, update deps, and fix CI [\#73](https://github.com/auth0/auth0-api-python/pull/73) ([kishore7snehil](https://github.com/kishore7snehil)) -## [1.0.0.b6](https://github.com/auth0/auth0-api-python/tree/1.0.0b6) (2025-10-29) +## [1.0.0b6](https://github.com/auth0/auth0-api-python/tree/1.0.0b6) (2025-10-29) [Full Changelog](https://github.com/auth0/auth0-api-python/compare/1.0.0b5...1.0.0b6) **Added** - feat: Add Custom Token Exchange support (RFC 8693) [\#51](https://github.com/auth0/auth0-api-python/pull/51) ([btiernay](https://github.com/btiernay)) -## [1.0.0.b5](https://github.com/auth0/auth0-api-python/tree/1.0.0.b5) (2025-09-11) -[Full Changelog](https://github.com/auth0/auth0-api-python/compare/1.0.0.b4...1.0.0.b5) +## [1.0.0b5](https://github.com/auth0/auth0-api-python/tree/1.0.0b5) (2025-09-11) +[Full Changelog](https://github.com/auth0/auth0-api-python/compare/1.0.0b4...1.0.0b5) **Added** - feat: Add token vault subject_token_type access_token to api sdk [\#28](https://github.com/auth0/auth0-api-python/pull/28) ([adamjmcgrath](https://github.com/adamjmcgrath)) -## [1.0.0.b4](https://github.com/auth0/auth0-api-python/tree/1.0.0.b4) (2025-08-28) -[Full Changelog](https://github.com/auth0/auth0-api-python/compare/1.0.0.b3...1.0.0.b4) +## [1.0.0b4](https://github.com/auth0/auth0-api-python/tree/1.0.0b4) (2025-08-28) +[Full Changelog](https://github.com/auth0/auth0-api-python/compare/1.0.0b3...1.0.0b4) **Added** - feat: add DPoP support [\#16](https://github.com/auth0/auth0-api-python/pull/16) ([kishore7snehil](https://github.com/kishore7snehil)) diff --git a/README.md b/README.md index 9c9c254..26332bf 100644 --- a/README.md +++ b/README.md @@ -227,9 +227,6 @@ If the token lacks `my_custom_claim` or fails any standard check (issuer mismatc ### 6. DPoP Authentication -> [!NOTE] -> This feature is currently available in [Early Access](https://auth0.com/docs/troubleshoot/product-lifecycle/product-release-stages#early-access). Please reach out to Auth0 support to get it enabled for your tenant. - This library supports **DPoP (Demonstrating Proof-of-Possession)** for enhanced security, allowing clients to prove possession of private keys bound to access tokens. #### Allowed Mode (Default) diff --git a/pyproject.toml b/pyproject.toml index 5a86ae6..2e5b0ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "auth0-api-python" -version = "1.0.0.b7" +version = "1.0.0b7" description = "SDK for verifying access tokens and securing APIs with Auth0, using Authlib." authors = ["Auth0 "] license = "MIT"