From e8710380b112d794b43dd1fa898ef8ecf95eb1f8 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Tue, 25 Feb 2025 10:59:22 +0000 Subject: [PATCH] chore(main): release 3.6.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 4 ++-- gradle.properties | 2 +- pom.xml | 2 +- src/main/java/com/microsoft/graph/core/CoreConstants.java | 2 +- 6 files changed, 14 insertions(+), 6 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 23efc1ea..bea4c089 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.6.0" + ".": "3.6.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 952f2ba8..e24b1e0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ 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.1](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.6.0...v3.6.1) (2025-02-25) + + +### Bug Fixes + +* resolve build errors for azure authentication package on android ([87c1042](https://github.com/microsoftgraph/msgraph-sdk-java-core/commit/87c1042f0f5383c4cdfd6a079d3aba643bcc607e)) +* resolve build errors for azure authentication package on android ([a379813](https://github.com/microsoftgraph/msgraph-sdk-java-core/commit/a3798137e26a27c002ccdd281220f58fd0baa372)) + ## [3.6.0](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.5.0...v3.6.0) (2025-02-18) diff --git a/README.md b/README.md index cc99376f..aab5f278 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.6.0' + implementation 'com.microsoft.graph:microsoft-graph-core:3.6.1' // 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.6.0 + 3.6.1 com.azure diff --git a/gradle.properties b/gradle.properties index 3b9a6834..dd124a53 100644 --- a/gradle.properties +++ b/gradle.properties @@ -30,7 +30,7 @@ mavenMajorVersion = 3 mavenMinorVersion = 6 # x-release-please-end # x-release-please-start-patch -mavenPatchVersion = 0 +mavenPatchVersion = 1 # x-release-please-end mavenArtifactSuffix = diff --git a/pom.xml b/pom.xml index acbe4e31..823c6030 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ com.microsoft.graph microsoft-graph-core - 3.6.0 + 3.6.1 pom diff --git a/src/main/java/com/microsoft/graph/core/CoreConstants.java b/src/main/java/com/microsoft/graph/core/CoreConstants.java index f5193d77..6db5660a 100644 --- a/src/main/java/com/microsoft/graph/core/CoreConstants.java +++ b/src/main/java/com/microsoft/graph/core/CoreConstants.java @@ -19,7 +19,7 @@ private static class VersionValues { private static final int MINOR = 6; // x-release-please-end // x-release-please-start-patch - private static final int PATCH = 0; + private static final int PATCH = 1; // x-release-please-end }