Skip to content

Commit 2f55b7f

Browse files
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)
1 parent 11022cd commit 2f55b7f

4 files changed

Lines changed: 9 additions & 11 deletions

File tree

.shiprc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"files": {
3-
".version": []
3+
".version": [],
4+
"pyproject.toml": ["version = \"{MAJOR}.{MINOR}.{PATCH}{PRERELEASE_LABEL}{PRERELEASE_COUNTER}\""]
45
},
56
"prefixVersion": false
67
}

CHANGELOG.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
# Change Log
22

3-
## [1.0.0.b7](https://github.com/auth0/auth0-api-python/tree/1.0.0b7) (2026-04-02)
3+
## [1.0.0b7](https://github.com/auth0/auth0-api-python/tree/1.0.0b7) (2026-04-02)
44
[Full Changelog](https://github.com/auth0/auth0-api-python/compare/1.0.0b6...1.0.0b7)
55

66
**Changed**
77
- 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))
88

9-
## [1.0.0.b6](https://github.com/auth0/auth0-api-python/tree/1.0.0b6) (2025-10-29)
9+
## [1.0.0b6](https://github.com/auth0/auth0-api-python/tree/1.0.0b6) (2025-10-29)
1010
[Full Changelog](https://github.com/auth0/auth0-api-python/compare/1.0.0b5...1.0.0b6)
1111

1212
**Added**
1313
- feat: Add Custom Token Exchange support (RFC 8693) [\#51](https://github.com/auth0/auth0-api-python/pull/51) ([btiernay](https://github.com/btiernay))
1414

15-
## [1.0.0.b5](https://github.com/auth0/auth0-api-python/tree/1.0.0.b5) (2025-09-11)
16-
[Full Changelog](https://github.com/auth0/auth0-api-python/compare/1.0.0.b4...1.0.0.b5)
15+
## [1.0.0b5](https://github.com/auth0/auth0-api-python/tree/1.0.0b5) (2025-09-11)
16+
[Full Changelog](https://github.com/auth0/auth0-api-python/compare/1.0.0b4...1.0.0b5)
1717

1818
**Added**
1919
- 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))
2020

21-
## [1.0.0.b4](https://github.com/auth0/auth0-api-python/tree/1.0.0.b4) (2025-08-28)
22-
[Full Changelog](https://github.com/auth0/auth0-api-python/compare/1.0.0.b3...1.0.0.b4)
21+
## [1.0.0b4](https://github.com/auth0/auth0-api-python/tree/1.0.0b4) (2025-08-28)
22+
[Full Changelog](https://github.com/auth0/auth0-api-python/compare/1.0.0b3...1.0.0b4)
2323

2424
**Added**
2525
- feat: add DPoP support [\#16](https://github.com/auth0/auth0-api-python/pull/16) ([kishore7snehil](https://github.com/kishore7snehil))

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,9 +227,6 @@ If the token lacks `my_custom_claim` or fails any standard check (issuer mismatc
227227

228228
### 6. DPoP Authentication
229229

230-
> [!NOTE]
231-
> 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.
232-
233230
This library supports **DPoP (Demonstrating Proof-of-Possession)** for enhanced security, allowing clients to prove possession of private keys bound to access tokens.
234231

235232
#### Allowed Mode (Default)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "auth0-api-python"
3-
version = "1.0.0.b7"
3+
version = "1.0.0b7"
44
description = "SDK for verifying access tokens and securing APIs with Auth0, using Authlib."
55
authors = ["Auth0 <support@auth0.com>"]
66
license = "MIT"

0 commit comments

Comments
 (0)