From d4e012024941b2ef2440b0ca6439f24d36c51522 Mon Sep 17 00:00:00 2001 From: Jim Anderson Date: Thu, 12 Jan 2023 12:49:59 -0600 Subject: [PATCH] Release 2.0.0-beta.0 (#503) --- CHANGELOG.md | 13 +++++++++++++ README.md | 4 ++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 05b8db04..b679b8de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Change Log +## [2.0.0 Beta 0](https://github.com/auth0/auth0-java/tree/2.0.0-beta.0) (2023-01-12) +[Full Changelog](https://github.com/auth0/auth0-java/compare/1.44.2...2.0.0-beta.0) + +> **Warning** This SDK is in beta and is subject to breaking changes. It is not recommended for production use, but your feedback and help in testing is appreciated! + +This release introduces several enhancement, including: +- HTTP response information returned from requests +- Additional HTTP client configurability +- Authentication API improvements to not require a client secret +- ... and more! + +Please see the [Migration Guide](MIGRATION_GUIDE.md) for guidance on updating your application. + ## [1.44.2](https://github.com/auth0/auth0-java/tree/1.44.2) (2023-01-11) [Full Changelog](https://github.com/auth0/auth0-java/compare/1.44.1...1.44.2) diff --git a/README.md b/README.md index 5f5c14ba..25c389f7 100644 --- a/README.md +++ b/README.md @@ -31,14 +31,14 @@ Add the dependency via Maven: com.auth0 auth0 - 1.44.1 + 2.0.0-beta.0 ``` or Gradle: ```gradle -implementation 'com.auth0:auth0:1.44.1' +implementation 'com.auth0:auth0:2.0.0-beta.0' ``` ### Configure the SDK