diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 3e6f9e92e99..95be6731b71 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "6.32.0" + ".": "6.33.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index d01040d53fb..4fc2e1a44f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ 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.33.0](https://github.com/microsoftgraph/msgraph-beta-sdk-java/compare/v6.32.0...v6.33.0) (2025-02-18) + + +### Features + +* adds change notification models ([774e99f](https://github.com/microsoftgraph/msgraph-beta-sdk-java/commit/774e99f2a64928f3ee56a61131e0f30e2afae860)) +* adds change notification models ([48ba6fd](https://github.com/microsoftgraph/msgraph-beta-sdk-java/commit/48ba6fd19ddc6964115fefbf74cf8f984c343feb)) +* **generation:** update request builders and models ([e7d018f](https://github.com/microsoftgraph/msgraph-beta-sdk-java/commit/e7d018f7fcc2b572279d354d91db9f1b92450c93)) + ## [6.32.0](https://github.com/microsoftgraph/msgraph-beta-sdk-java/compare/v6.31.0...v6.32.0) (2025-02-13) diff --git a/README.md b/README.md index 6e375e22617..af7c27428b2 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.32.0' + implementation 'com.microsoft.graph:microsoft-graph-beta:6.33.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.32.0 + 6.33.0 diff --git a/gradle.properties b/gradle.properties index 9aa0b75f53d..f73dea7cfe3 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 = 32 +mavenMinorVersion = 33 # 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 69599794bff..72b76fc5212 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.32.0"; + public static final String VERSION_NAME = "6.33.0"; // x-release-please-end }