From cdaa30cd251fd336fa106efe889ac7b60d7bf237 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 14:18:52 +0000 Subject: [PATCH] chore(main): release 3.2.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ README.md | 4 ++-- gradle.properties | 4 ++-- pom.xml | 2 +- src/main/java/com/microsoft/graph/core/CoreConstants.java | 4 ++-- 6 files changed, 15 insertions(+), 8 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f1da158e..0b922d03 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.1.17" + ".": "3.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 90b46497..3ebfd13a 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.2.0](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.1.17...v3.2.0) (2024-09-03) + + +### Features + +* Adds kiota authentication dependency into compilation classpath ([4c80395](https://github.com/microsoftgraph/msgraph-sdk-java-core/commit/4c8039518244fd6e89b36c38f6f33b788b4ec212)) + ## [3.1.17](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.1.16...v3.1.17) (2024-08-23) diff --git a/README.md b/README.md index 2d88af94..b0feb6d9 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.1.17' + implementation 'com.microsoft.graph:microsoft-graph-core:3.2.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.1.17 + 3.2.0 com.azure diff --git a/gradle.properties b/gradle.properties index ad6e0e1d..cade9361 100644 --- a/gradle.properties +++ b/gradle.properties @@ -27,10 +27,10 @@ mavenArtifactId = microsoft-graph-core mavenMajorVersion = 3 # x-release-please-end # x-release-please-start-minor -mavenMinorVersion = 1 +mavenMinorVersion = 2 # x-release-please-end # x-release-please-start-patch -mavenPatchVersion = 17 +mavenPatchVersion = 0 # x-release-please-end mavenArtifactSuffix = diff --git a/pom.xml b/pom.xml index fe0f0a51..1dd2d2fe 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ com.microsoft.graph microsoft-graph-core - 3.1.17 + 3.2.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 20e6bbab..8e1c272a 100644 --- a/src/main/java/com/microsoft/graph/core/CoreConstants.java +++ b/src/main/java/com/microsoft/graph/core/CoreConstants.java @@ -16,10 +16,10 @@ private static class VersionValues { private static final int MAJOR = 3; // x-release-please-end // x-release-please-start-minor - private static final int MINOR = 1; + private static final int MINOR = 2; // x-release-please-end // x-release-please-start-patch - private static final int PATCH = 17; + private static final int PATCH = 0; // x-release-please-end }