diff --git a/.release-please-manifest.json b/.release-please-manifest.json
index bea4c089..b5e284aa 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1,3 +1,3 @@
{
- ".": "3.6.1"
+ ".": "3.6.2"
}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e24b1e0c..09f18d6f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,13 @@ 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.2](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.6.1...v3.6.2) (2025-06-20)
+
+
+### Bug Fixes
+
+* sanity release due to pipeline migration ([91bf946](https://github.com/microsoftgraph/msgraph-sdk-java-core/commit/91bf946c98cac5872d343d61427bc80b4affbe0e))
+
## [3.6.1](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.6.0...v3.6.1) (2025-02-25)
diff --git a/README.md b/README.md
index aab5f278..1dced8ea 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.1'
+ implementation 'com.microsoft.graph:microsoft-graph-core:3.6.2'
// 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.1
+ 3.6.2
com.azure
diff --git a/gradle.properties b/gradle.properties
index dd124a53..f32e1427 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 = 1
+mavenPatchVersion = 2
# x-release-please-end
mavenArtifactSuffix =
diff --git a/pom.xml b/pom.xml
index e6436ac7..3ad584f6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -9,7 +9,7 @@
com.microsoft.graph
microsoft-graph-core
- 3.6.1
+ 3.6.2
pom
diff --git a/src/main/java/com/microsoft/graph/core/CoreConstants.java b/src/main/java/com/microsoft/graph/core/CoreConstants.java
index 6db5660a..b6768ff7 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 = 1;
+ private static final int PATCH = 2;
// x-release-please-end
}