Skip to content

Commit 3017cbe

Browse files
authored
Merge pull request #1908 from microsoftgraph/bugfix/dependencies-alignment
- fixes a dependencies misalignment issue
2 parents e526bca + 73c5675 commit 3017cbe

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### Changed
1313

14+
## [6.5.1] - 2024-03-29
15+
16+
### Changed
17+
18+
- Fixes a misalignment issue with kiota dependencies.
19+
1420
## [6.5.0] - 2024-03-26
1521

1622
### Added

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ mavenGroupId = com.microsoft.graph
2727
mavenArtifactId = microsoft-graph
2828
mavenMajorVersion = 6
2929
mavenMinorVersion = 5
30-
mavenPatchVersion = 0
30+
mavenPatchVersion = 1
3131
mavenArtifactSuffix =
3232

3333
#These values are used to run functional tests

gradle/dependencies.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88
implementation 'jakarta.annotation:jakarta.annotation-api:2.1.1'
99

1010
// Core Http library
11-
api 'com.microsoft.graph:microsoft-graph-core:3.1.6'
11+
api 'com.microsoft.graph:microsoft-graph-core:3.1.7'
1212
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.1.2'
1313
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.1.2'
1414
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.1.2'

src/main/java/com/microsoft/graph/info/Constants.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,5 @@
33
/** Multi-purpose constants holder used accross the SDK */
44
public final class Constants {
55
/** The SDK version */
6-
public static final String VERSION_NAME = "6.5.0";
6+
public static final String VERSION_NAME = "6.5.1";
77
}
8-
9-
10-
11-

0 commit comments

Comments
 (0)