diff --git a/CHANGELOG.md b/CHANGELOG.md index 2238b715..385d6c94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +## [3.1.5] - 2024-02-27 + +### Changed +- Bumps Kiota-Java abstractions, authentication, http, and serialization components + ## [3.1.4] - 2024-02-21 - Bumps Kiota-Java abstractions, authentication, http, and serialization components diff --git a/gradle.properties b/gradle.properties index 6b4f9780..1c64422b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -25,7 +25,7 @@ mavenGroupId = com.microsoft.graph mavenArtifactId = microsoft-graph-core mavenMajorVersion = 3 mavenMinorVersion = 1 -mavenPatchVersion = 4 +mavenPatchVersion = 5 mavenArtifactSuffix = #These values are used to run functional tests diff --git a/readme.md b/readme.md index bfe04602..737ef138 100644 --- a/readme.md +++ b/readme.md @@ -22,7 +22,7 @@ repositories { dependencies { // Include the sdk as a dependency - implementation 'com.microsoft.graph:microsoft-graph-core:3.1.4' + implementation 'com.microsoft.graph:microsoft-graph-core:3.1.5' // This dependency is only needed if you are using the TokenCredentialAuthProvider implementation 'com.azure:azure-identity:1.11.0' } @@ -37,7 +37,7 @@ Add the dependency in `dependencies` in pom.xml com.microsoft.graph microsoft-graph-core - 3.1.4 + 3.1.5 com.azure azure-identity diff --git a/src/main/java/com/microsoft/graph/core/CoreConstants.java b/src/main/java/com/microsoft/graph/core/CoreConstants.java index dee9d424..2aae7cda 100644 --- a/src/main/java/com/microsoft/graph/core/CoreConstants.java +++ b/src/main/java/com/microsoft/graph/core/CoreConstants.java @@ -14,7 +14,7 @@ private CoreConstants() {} private static class VersionValues { private static final int MAJOR = 3; private static final int MINOR = 1; - private static final int PATCH = 3; + private static final int PATCH = 5; } /**