diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 155f1bdd..23efc1ea 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.5.0" + ".": "3.6.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a61af605..952f2ba8 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). +## [3.6.0](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.5.0...v3.6.0) (2025-02-18) + + +### Features + +* adds ChangeNotification interfaces and static methods ([aa23bd7](https://github.com/microsoftgraph/msgraph-sdk-java-core/commit/aa23bd7d9a8568cf9abc2b0f9758618bac016547)) + ## [3.5.0](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.4.0...v3.5.0) (2025-01-02) diff --git a/README.md b/README.md index ead1180a..cc99376f 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ repositories { dependencies { // Include the sdk as a dependency // x-release-please-start-version - implementation 'com.microsoft.graph:microsoft-graph-core:3.5.0' + implementation 'com.microsoft.graph:microsoft-graph-core:3.6.0' // x-release-please-end // This dependency is only needed if you are using the TokenCredentialAuthProvider implementation 'com.azure:azure-identity:1.11.0' @@ -40,7 +40,7 @@ Add the dependency in `dependencies` in pom.xml com.microsoft.graph microsoft-graph-core - 3.5.0 + 3.6.0 com.azure diff --git a/gradle.properties b/gradle.properties index d6bb1584..3b9a6834 100644 --- a/gradle.properties +++ b/gradle.properties @@ -27,7 +27,7 @@ mavenArtifactId = microsoft-graph-core mavenMajorVersion = 3 # x-release-please-end # x-release-please-start-minor -mavenMinorVersion = 5 +mavenMinorVersion = 6 # x-release-please-end # x-release-please-start-patch mavenPatchVersion = 0 diff --git a/pom.xml b/pom.xml index 10ad996b..2df82f13 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ com.microsoft.graph microsoft-graph-core - 3.5.0 + 3.6.0 pom diff --git a/src/main/java/com/microsoft/graph/core/CoreConstants.java b/src/main/java/com/microsoft/graph/core/CoreConstants.java index 4459ab29..f5193d77 100644 --- a/src/main/java/com/microsoft/graph/core/CoreConstants.java +++ b/src/main/java/com/microsoft/graph/core/CoreConstants.java @@ -16,7 +16,7 @@ private static class VersionValues { private static final int MAJOR = 3; // x-release-please-end // x-release-please-start-minor - private static final int MINOR = 5; + private static final int MINOR = 6; // x-release-please-end // x-release-please-start-patch private static final int PATCH = 0;