diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 01a8e06bf57..e0c58dd5932 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "6.28.0" + ".": "6.29.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 282c2026a43..fdbc52fd6cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ 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.29.0](https://github.com/microsoftgraph/msgraph-beta-sdk-java/compare/v6.28.0...v6.29.0) (2025-01-22) + + +### Features + +* **generation:** update request builders and models ([2a9a832](https://github.com/microsoftgraph/msgraph-beta-sdk-java/commit/2a9a832c4778a6b648ebae79ccf5c9ab9f10683e)) +* **generation:** update request builders and models ([211abff](https://github.com/microsoftgraph/msgraph-beta-sdk-java/commit/211abffc142ea49301d85d6fd72726e3d3b6b722)) + ## [6.28.0](https://github.com/microsoftgraph/msgraph-beta-sdk-java/compare/v6.27.1...v6.28.0) (2025-01-07) diff --git a/README.md b/README.md index e3e130658d9..bc187578cc2 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.28.0' + implementation 'com.microsoft.graph:microsoft-graph-beta:6.29.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.28.0 + 6.29.0 diff --git a/gradle.properties b/gradle.properties index 188bf1bf35b..7ef72e1b3d2 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 = 28 +mavenMinorVersion = 29 # 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 8c92b45946d..24779fd1b95 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.28.0"; + public static final String VERSION_NAME = "6.29.0"; // x-release-please-end }