diff --git a/CHANGELOG.md b/CHANGELOG.md index e8e50522..0e881547 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## [4.4.0](https://github.com/auth0/auth0-python/tree/4.4.0) (2023-07-25) +[Full Changelog](https://github.com/auth0/auth0-python/compare/4.3.0...4.4.0) + +**Added** +- [SDK-4394] Add organization name validation [\#507](https://github.com/auth0/auth0-python/pull/507) ([adamjmcgrath](https://github.com/adamjmcgrath)) +- Add type hints to `management` [\#497](https://github.com/auth0/auth0-python/pull/497) ([Viicos](https://github.com/Viicos)) + +**Fixed** +- Fix asyncify for users client where token is not required [\#506](https://github.com/auth0/auth0-python/pull/506) ([cgearing](https://github.com/cgearing)) + ## [4.3.0](https://github.com/auth0/auth0-python/tree/4.3.0) (2023-06-26) [Full Changelog](https://github.com/auth0/auth0-python/compare/4.2.0...4.3.0) diff --git a/auth0/__init__.py b/auth0/__init__.py index c7736d58..78bf8ebd 100644 --- a/auth0/__init__.py +++ b/auth0/__init__.py @@ -1,4 +1,4 @@ -__version__ = "4.3.0" +__version__ = "4.4.0" from auth0.exceptions import Auth0Error, RateLimitError, TokenValidationError