From b3dc516e12e6810c607d0a623c4c7b32bb9294fe Mon Sep 17 00:00:00 2001 From: adamjmcgrath Date: Thu, 19 Jan 2023 16:07:14 +0000 Subject: [PATCH] Release 4.0.0 --- CHANGELOG.md | 19 +++++++++++++++++++ V4_MIGRATION_GUIDE.md | 2 ++ auth0/__init__.py | 2 +- 3 files changed, 22 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cf0eec4f..413963d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Change Log +## [4.0.0](https://github.com/auth0/auth0-python/tree/4.0.0) (2023-01-19) +[Full Changelog](https://github.com/auth0/auth0-python/compare/3.24.1...4.0.0) + +**Added** +- Add support for private_key_jwt [\#456](https://github.com/auth0/auth0-python/pull/456) ([adamjmcgrath](https://github.com/adamjmcgrath)) +- Add support for managing client credentials [\#459](https://github.com/auth0/auth0-python/pull/459) ([adamjmcgrath](https://github.com/adamjmcgrath)) + +**Security** +- Update pyjwt [\#460](https://github.com/auth0/auth0-python/pull/460) ([adamjmcgrath](https://github.com/adamjmcgrath)) + +**Changed** +- Publish Python Support Schedule [\#454](https://github.com/auth0/auth0-python/pull/454) ([evansims](https://github.com/evansims)) + +**⚠️ BREAKING CHANGES** +- Remove deprecated methods [\#461](https://github.com/auth0/auth0-python/pull/461) ([adamjmcgrath](https://github.com/adamjmcgrath)) +- Remove v3 folder [\#462](https://github.com/auth0/auth0-python/pull/462) ([adamjmcgrath](https://github.com/adamjmcgrath)) + +See the [V4_MIGRATION_GUIDE](https://github.com/auth0/auth0-python/blob/master/V4_MIGRATION_GUIDE.md) for more info. + ## [3.24.1](https://github.com/auth0/auth0-python/tree/3.24.1) (2023-01-19) [Full Changelog](https://github.com/auth0/auth0-python/compare/3.24.0...3.24.1) diff --git a/V4_MIGRATION_GUIDE.md b/V4_MIGRATION_GUIDE.md index 8492d894..9017d3b4 100644 --- a/V4_MIGRATION_GUIDE.md +++ b/V4_MIGRATION_GUIDE.md @@ -12,6 +12,8 @@ Guide to migrating from `3.x` to `4.x` Python <=3.6 and Python 2 are EOL and are no longer supported. +Also note the new Python [Support Policy](https://github.com/auth0/auth0-python#support-policy) + ## The `v3` subfolder has been removed Versioning the import paths was not necessary and made major upgrades unnecessarily complex, so this has been removed and all files have been moved up a directory. diff --git a/auth0/__init__.py b/auth0/__init__.py index 39b9767e..830c2c0c 100644 --- a/auth0/__init__.py +++ b/auth0/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.24.1" +__version__ = "4.0.0" from auth0.exceptions import Auth0Error, RateLimitError, TokenValidationError