diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 22fefa7400b..e77f9250eff 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "6.30.1" + ".": "6.31.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 349e938e0a0..407550b987b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. +## [6.31.0](https://github.com/microsoftgraph/msgraph-sdk-java/compare/v6.30.1...v6.31.0) (2025-03-05) + + +### Features + +* **generation:** update request builders and models ([ace2a25](https://github.com/microsoftgraph/msgraph-sdk-java/commit/ace2a25a8bb98551a6612a52bc189257c15eb461)) + ## [6.30.1](https://github.com/microsoftgraph/msgraph-sdk-java/compare/v6.30.0...v6.30.1) (2025-02-27) diff --git a/README.md b/README.md index d86f15e3ef9..d7ad57ca330 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.30.1' + implementation 'com.microsoft.graph:microsoft-graph:6.31.0' // 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.30.1 + 6.31.0 diff --git a/gradle.properties b/gradle.properties index 11d614dba59..54c61f75544 100644 --- a/gradle.properties +++ b/gradle.properties @@ -29,10 +29,10 @@ mavenArtifactId = microsoft-graph mavenMajorVersion = 6 # x-release-please-end # x-release-please-start-minor -mavenMinorVersion = 30 +mavenMinorVersion = 31 # x-release-please-end # x-release-please-start-patch -mavenPatchVersion = 1 +mavenPatchVersion = 0 # x-release-please-end mavenArtifactSuffix = diff --git a/pom.xml b/pom.xml index 5a68f0eac9e..1f6b598b04d 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.microsoft.graph microsoft-graph - 6.30.1 + 6.31.0 pom diff --git a/src/main/java/com/microsoft/graph/info/Constants.java b/src/main/java/com/microsoft/graph/info/Constants.java index 47b7b6af0d8..b5b6d9ccc6e 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.30.1"; + public static final String VERSION_NAME = "6.31.0"; // x-release-please-end }