diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 610647bba44..474e190e7b9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "6.35.0" + ".": "6.36.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index ebee5ce7c57..ec4a600ac0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ 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). +## [6.36.0](https://github.com/microsoftgraph/msgraph-beta-sdk-java/compare/v6.35.0...v6.36.0) (2025-03-11) + + +### Features + +* **generation:** update request builders and models ([b0243dc](https://github.com/microsoftgraph/msgraph-beta-sdk-java/commit/b0243dc96c956b8f603700a4e54bb099b6bb717c)) + ## [6.35.0](https://github.com/microsoftgraph/msgraph-beta-sdk-java/compare/v6.34.1...v6.35.0) (2025-03-05) diff --git a/README.md b/README.md index 119c1030944..963cbd99d8b 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ repositories { dependencies { // Include the sdk as a dependency // x-release-please-start-version - implementation 'com.microsoft.graph:microsoft-graph-beta:6.35.0' + implementation 'com.microsoft.graph:microsoft-graph-beta:6.36.0' // x-release-please-end // This dependency is only needed if you are using the TokenCrendentialAuthProvider implementation 'com.azure:azure-identity:1.11.0' @@ -39,7 +39,7 @@ Add the dependency in `dependencies` in pom.xml com.microsoft.graph microsoft-graph-beta - 6.35.0 + 6.36.0 diff --git a/gradle.properties b/gradle.properties index 017b9e8d444..673d2aaeb7d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -29,7 +29,7 @@ mavenArtifactId = microsoft-graph-beta mavenMajorVersion = 6 # x-release-please-end # x-release-please-start-minor -mavenMinorVersion = 35 +mavenMinorVersion = 36 # x-release-please-end # x-release-please-start-patch mavenPatchVersion = 0 diff --git a/src/main/java/com/microsoft/graph/beta/info/Constants.java b/src/main/java/com/microsoft/graph/beta/info/Constants.java index 1ecfb819017..8d7e8e6def6 100644 --- a/src/main/java/com/microsoft/graph/beta/info/Constants.java +++ b/src/main/java/com/microsoft/graph/beta/info/Constants.java @@ -6,7 +6,7 @@ private Constants() { } /** The SDK version */ // x-release-please-start-version - public static final String VERSION_NAME = "6.35.0"; + public static final String VERSION_NAME = "6.36.0"; // x-release-please-end }