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