diff --git a/.version b/.version
index ebb5fbf..d22846d 100644
--- a/.version
+++ b/.version
@@ -1 +1 @@
-1.0.0-beta.1
\ No newline at end of file
+1.0.0-beta.2
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 111b281..9eb27fe 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,16 @@
# Changelog
+## [1.0.0-beta.2](https://github.com/auth0/auth0-auth-java/tree/1.0.0-beta.2) (2026-08-17)
+
+**Added**
+- Adds support for On-Behalf-Of token exchange - exposes read-only accessors for the RFC 8693 act (actor) claim and the org_id claim on validated tokens. [\#71](https://github.com/auth0/auth0-auth-java/pull/71) ([tanya732](https://github.com/tanya732))
+
+**Changed**
+- Fix license name to Apache-2.0 in POM and README [\#67](https://github.com/auth0/auth0-auth-java/pull/67) ([tanya732](https://github.com/tanya732))
+
+**Fixed**
+- Fix telemetry configuration so the `Auth0-Client` header is attached to outbound Auth0 calls [\#70](https://github.com/auth0/auth0-auth-java/pull/70) ([tanya732](https://github.com/tanya732))
+
## [1.0.0-beta.1](https://github.com/auth0/auth0-auth-java/tree/1.0.0-beta.1) (2026-04-09)
**Added**
diff --git a/README.md b/README.md
index 487e69e..415f86e 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.1
+ 1.0.0-beta.2
```
@@ -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.1` | 📦 **Published** |
+| `auth0-springboot-api` | `com.auth0` | `auth0-springboot-api` | `1.0.0-beta.2` | 📦 **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 609cddd..1f1f139 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.1
+ 1.0.0-beta.2
```
@@ -33,7 +33,7 @@ or Gradle:
```gradle
dependencies {
- implementation 'com.auth0:auth0-springboot-api:1.0.0-beta.1'
+ implementation 'com.auth0:auth0-springboot-api:1.0.0-beta.2'
}
```
diff --git a/gradle.properties b/gradle.properties
index bdc7c6f..8ede3d7 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,5 +1,5 @@
GROUP=com.auth0
-VERSION_NAME=1.0.0-beta.1
+VERSION_NAME=1.0.0-beta.2
# Shared POM metadata (module-specific properties are in each module's build.gradle)
POM_URL=https://github.com/auth0/auth0-auth-java