diff --git a/.version b/.version index 42e8a3e..ebb5fbf 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -1.0.0-beta.0 \ No newline at end of file +1.0.0-beta.1 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 157a5e4..111b281 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [1.0.0-beta.1](https://github.com/auth0/auth0-auth-java/tree/1.0.0-beta.1) (2026-04-09) + +**Added** +- Adds support for Multiple Custom Domains [\#21](https://github.com/auth0/auth0-auth-java/pull/21) ([tanya732](https://github.com/tanya732)) +- Adds telemetry support [\#34](https://github.com/auth0/auth0-auth-java/pull/34) ([tanya732](https://github.com/tanya732)) + +**Fixed** +- Comment out application name in properties file [\#30](https://github.com/auth0/auth0-auth-java/pull/30) ([ClementVicart](https://github.com/ClementVicart)) + ## [1.0.0-beta.0](https://github.com/auth0/auth0-auth-java/tree/1.0.0-beta.0) (2026-03-02) ### Features diff --git a/README.md b/README.md index ac9e07e..e8ad085 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ If you're building a Spring Boot application, use the Spring Boot integration: com.auth0 auth0-springboot-api - 1.0.0-beta.0 + 1.0.0-beta.1 ``` @@ -84,7 +84,7 @@ Spring Boot integration module is published as a public artifact: | Module | Group ID | Artifact ID | Version | Status | | ---------------------- | ----------- | ---------------------- |----------------| ---------------- | -| `auth0-springboot-api` | `com.auth0` | `auth0-springboot-api` | `1.0.0-beta.0` | 📦 **Published** | +| `auth0-springboot-api` | `com.auth0` | `auth0-springboot-api` | `1.0.0-beta.1` | 📦 **Published** | The core library (`auth0-api-java`) is bundled as an internal dependency within the Spring Boot module and is not published separately. diff --git a/auth0-springboot-api/README.md b/auth0-springboot-api/README.md index cb1ce68..84320fa 100644 --- a/auth0-springboot-api/README.md +++ b/auth0-springboot-api/README.md @@ -25,7 +25,7 @@ Add the dependency via Maven: com.auth0 auth0-springboot-api - 1.0.0-beta.0 + 1.0.0-beta.1 ``` @@ -33,7 +33,7 @@ or Gradle: ```gradle dependencies { - implementation 'com.auth0:auth0-springboot-api:1.0.0-beta.0' + implementation 'com.auth0:auth0-springboot-api:1.0.0-beta.1' } ``` diff --git a/gradle.properties b/gradle.properties index efe7256..b3603bf 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.auth0 -VERSION_NAME=1.0.0-beta.0 +VERSION_NAME=1.0.0-beta.1 # Shared POM metadata (module-specific properties are in each module's build.gradle) POM_URL=https://github.com/auth0/auth0-auth-java