diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f772a2ec526..63d55dddf51 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "6.53.0" + ".": "6.54.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index ae92af91a76..1e27a159648 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). +## [6.54.0](https://github.com/microsoftgraph/msgraph-beta-sdk-java/compare/v6.53.0...v6.54.0) (2026-01-07) + + +### Features + +* **generation:** update request builders and models ([1acc5f1](https://github.com/microsoftgraph/msgraph-beta-sdk-java/commit/1acc5f178cd60c3b7f76f45281e6aff15b46e007)) + ## [6.53.0](https://github.com/microsoftgraph/msgraph-beta-sdk-java/compare/v6.52.0...v6.53.0) (2025-12-17) diff --git a/README.md b/README.md index 56d535f9678..6cb643148da 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.53.0' + implementation 'com.microsoft.graph:microsoft-graph-beta:6.54.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.53.0 + 6.54.0 diff --git a/gradle.properties b/gradle.properties index a5d706bd368..41c1ca73650 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 = 53 +mavenMinorVersion = 54 # 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 497a4aa40ee..5a4d85c58ea 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.53.0"; + public static final String VERSION_NAME = "6.54.0"; // x-release-please-end }