diff --git a/.release-please-manifest.json b/.release-please-manifest.json
index bcbeb412..f2e527b8 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1,3 +1,3 @@
{
- ".": "3.6.6"
+ ".": "3.6.7"
}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 75eb9fd8..556cb137 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## [3.6.7](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.6.6...v3.6.7) (2026-06-04)
+
+
+### Bug Fixes
+
+* **deps:** bump org.junit.jupiter:junit-jupiter ([0da3cb1](https://github.com/microsoftgraph/msgraph-sdk-java-core/commit/0da3cb1fc3b893187cd9d322d69697d1f50508c6))
+* **deps:** bump org.junit.jupiter:junit-jupiter from 6.0.3 to 6.1.0 in /android in the junit-dependencies group ([8be1ced](https://github.com/microsoftgraph/msgraph-sdk-java-core/commit/8be1ced7a8bfc71b4cf162b2ccf669df02e1fc9e))
+
## [3.6.6](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.6.5...v3.6.6) (2026-05-16)
diff --git a/README.md b/README.md
index a63a855e..b371a30a 100644
--- a/README.md
+++ b/README.md
@@ -23,7 +23,7 @@ repositories {
dependencies {
// Include the sdk as a dependency
// x-release-please-start-version
- implementation 'com.microsoft.graph:microsoft-graph-core:3.6.6'
+ implementation 'com.microsoft.graph:microsoft-graph-core:3.6.7'
// x-release-please-end
// This dependency is only needed if you are using the TokenCredentialAuthProvider
implementation 'com.azure:azure-identity:1.11.0'
@@ -40,7 +40,7 @@ Add the dependency in `dependencies` in pom.xml
com.microsoft.graph
microsoft-graph-core
- 3.6.6
+ 3.6.7
com.azure
diff --git a/gradle.properties b/gradle.properties
index ef0b9a24..d66b7e2b 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -30,7 +30,7 @@ mavenMajorVersion = 3
mavenMinorVersion = 6
# x-release-please-end
# x-release-please-start-patch
-mavenPatchVersion = 6
+mavenPatchVersion = 7
# x-release-please-end
mavenArtifactSuffix =
diff --git a/pom.xml b/pom.xml
index 3d5d9442..90ec7f5f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -9,7 +9,7 @@
com.microsoft.graph
microsoft-graph-core
- 3.6.6
+ 3.6.7
pom
diff --git a/src/main/java/com/microsoft/graph/core/CoreConstants.java b/src/main/java/com/microsoft/graph/core/CoreConstants.java
index 077aa82f..3f0d4401 100644
--- a/src/main/java/com/microsoft/graph/core/CoreConstants.java
+++ b/src/main/java/com/microsoft/graph/core/CoreConstants.java
@@ -19,7 +19,7 @@ private static class VersionValues {
private static final int MINOR = 6;
// x-release-please-end
// x-release-please-start-patch
- private static final int PATCH = 6;
+ private static final int PATCH = 7;
// x-release-please-end
}