diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d7c0c8c2c9b..48d06e38636 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "6.42.0" + ".": "6.42.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index b42a25ff2e8..c930621678e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. +## [6.42.1](https://github.com/microsoftgraph/msgraph-sdk-java/compare/v6.42.0...v6.42.1) (2025-06-20) + + +### Bug Fixes + +* branch name for the CI ([a13ce43](https://github.com/microsoftgraph/msgraph-sdk-java/commit/a13ce43d5dc1d00ea4471d0487a21fe45a641f5c)) +* sanity release due to pipeline migration ([a0e3ad1](https://github.com/microsoftgraph/msgraph-sdk-java/commit/a0e3ad1b45e04a867a3ee47e743bcb2a7603443b)) + ## [6.42.0](https://github.com/microsoftgraph/msgraph-sdk-java/compare/v6.41.0...v6.42.0) (2025-06-18) diff --git a/README.md b/README.md index b9572b2dde0..a3d978de82f 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ repositories { dependencies { // Include the sdk as a dependency // x-release-please-start-version - implementation 'com.microsoft.graph:microsoft-graph:6.42.0' + implementation 'com.microsoft.graph:microsoft-graph:6.42.1' // x-release-please-end // This dependency is only needed if you are using a TokenCredential object for authentication implementation 'com.azure:azure-identity:1.15.0' @@ -38,7 +38,7 @@ Add the dependency in `dependencies` in pom.xml com.microsoft.graph microsoft-graph - 6.42.0 + 6.42.1 diff --git a/gradle.properties b/gradle.properties index 5a624840391..a0dbf345970 100644 --- a/gradle.properties +++ b/gradle.properties @@ -32,7 +32,7 @@ mavenMajorVersion = 6 mavenMinorVersion = 42 # x-release-please-end # x-release-please-start-patch -mavenPatchVersion = 0 +mavenPatchVersion = 1 # x-release-please-end mavenArtifactSuffix = diff --git a/pom.xml b/pom.xml index c4d0b19a78e..ff5f774ba07 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.microsoft.graph microsoft-graph - 6.42.0 + 6.42.1 pom diff --git a/src/main/java/com/microsoft/graph/info/Constants.java b/src/main/java/com/microsoft/graph/info/Constants.java index afaafcf4ada..55a6327aef6 100644 --- a/src/main/java/com/microsoft/graph/info/Constants.java +++ b/src/main/java/com/microsoft/graph/info/Constants.java @@ -4,7 +4,7 @@ public final class Constants { /** The SDK version */ // x-release-please-start-version - public static final String VERSION_NAME = "6.42.0"; + public static final String VERSION_NAME = "6.42.1"; // x-release-please-end }