diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b5e284aa..39d5a95e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.6.2" + ".": "3.6.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 09f18d6f..dc9f38e2 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.3](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.6.2...v3.6.3) (2025-06-20) + + +### Bug Fixes + +* branch name for the CI ([2226099](https://github.com/microsoftgraph/msgraph-sdk-java-core/commit/2226099ef65c0bacfa39a72f0df001efd30a99a5)) +* branch name for the CI ([a38d725](https://github.com/microsoftgraph/msgraph-sdk-java-core/commit/a38d72527515918223a012c503377742939e1554)) + ## [3.6.2](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.6.1...v3.6.2) (2025-06-20) diff --git a/README.md b/README.md index 1dced8ea..77548b02 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.2' + implementation 'com.microsoft.graph:microsoft-graph-core:3.6.3' // 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.2 + 3.6.3 com.azure diff --git a/gradle.properties b/gradle.properties index f32e1427..97f5d5db 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 = 2 +mavenPatchVersion = 3 # x-release-please-end mavenArtifactSuffix = diff --git a/pom.xml b/pom.xml index 3ad584f6..f4d6ea1c 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ com.microsoft.graph microsoft-graph-core - 3.6.2 + 3.6.3 pom diff --git a/src/main/java/com/microsoft/graph/core/CoreConstants.java b/src/main/java/com/microsoft/graph/core/CoreConstants.java index b6768ff7..0d3388fe 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 = 2; + private static final int PATCH = 3; // x-release-please-end }