diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 9304be02c6c..01a8e06bf57 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "6.27.1" + ".": "6.28.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a4fa02f5cf..282c2026a43 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.28.0](https://github.com/microsoftgraph/msgraph-beta-sdk-java/compare/v6.27.1...v6.28.0) (2025-01-07) + + +### Features + +* **generation:** update request builders and models ([c0176d9](https://github.com/microsoftgraph/msgraph-beta-sdk-java/commit/c0176d9f4683222c451cdc36ebdbf333074a6b49)) + ## [6.27.1](https://github.com/microsoftgraph/msgraph-beta-sdk-java/compare/v6.27.0...v6.27.1) (2025-01-03) diff --git a/README.md b/README.md index 649e43e972d..e3e130658d9 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.27.1' + implementation 'com.microsoft.graph:microsoft-graph-beta:6.28.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.27.1 + 6.28.0 diff --git a/gradle.properties b/gradle.properties index 49af82067b6..188bf1bf35b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -29,10 +29,10 @@ mavenArtifactId = microsoft-graph-beta mavenMajorVersion = 6 # x-release-please-end # x-release-please-start-minor -mavenMinorVersion = 27 +mavenMinorVersion = 28 # x-release-please-end # x-release-please-start-patch -mavenPatchVersion = 1 +mavenPatchVersion = 0 # x-release-please-end mavenArtifactSuffix = 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 565b0e97a4b..8c92b45946d 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.27.1"; + public static final String VERSION_NAME = "6.28.0"; // x-release-please-end }