Skip to content

Commit 1a61f64

Browse files
authored
Merge pull request #910 from microsoftgraph/bugfix/dependencies-alignment
- fixes a dependencies misalignment issue
2 parents f077090 + 14b944f commit 1a61f64

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
### Changed

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-beta
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/beta/info/Constants.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,5 @@ public final class Constants {
55
private Constants() {
66
}
77
/** The SDK version */
8-
public static final String VERSION_NAME = "6.5.0";
8+
public static final String VERSION_NAME = "6.5.1";
99
}
10-
11-
12-
13-

0 commit comments

Comments
 (0)