From 5924f1e1a1d2963f803035140467ce638225737e Mon Sep 17 00:00:00 2001 From: Luciano Balmaceda Date: Mon, 18 Oct 2021 15:12:31 +0200 Subject: [PATCH] Release 3.19.0 --- CHANGELOG.md | 13 +++++++++++++ auth0/__init__.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c72574d8..66758763 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ Changes ======= +3.19.0 +------------------ + +**Added** +- Add actions to Auth0 class [\#293](https://github.com/auth0/auth0-python/pull/293) ([jrzerr](https://github.com/jrzerr)) +- Added support for prompts API [\#291](https://github.com/auth0/auth0-python/pull/291) ([lorinkoz](https://github.com/lorinkoz)) + +**Changed** +- Remove references to ID token in generic token classes [\#295](https://github.com/auth0/auth0-python/pull/295) ([lbalmaceda](https://github.com/lbalmaceda)) + +**Fixed** +- Use assertNotEqual instead of assertNotEquals for Python 3.11 compatibility. [\#294](https://github.com/auth0/auth0-python/pull/294) ([tirkarthi](https://github.com/tirkarthi)) + 3.18.0 ------------------ diff --git a/auth0/__init__.py b/auth0/__init__.py index c754d321..786602c8 100644 --- a/auth0/__init__.py +++ b/auth0/__init__.py @@ -1 +1 @@ -__version__ = '3.18.0' +__version__ = '3.19.0'