Skip to content

Commit a225933

Browse files
authored
Merge pull request #1828 from microsoftgraph/fix/bump-core
Bumps Graph Core dependency version and update lib version for release
2 parents 8bd2599 + 7635f2f commit a225933

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-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.2.1] - 2024-02-16
15+
16+
### Changed
17+
18+
- Bumps microsoft-graph-core dependency to 3.1.3
19+
1420
## [6.2.0] - 2024-02-14
1521

1622
- Weekly Generated v1.0 models and request builders using Kiota.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ repositories {
2020
2121
dependencies {
2222
// Include the sdk as a dependency
23-
implementation 'com.microsoft.graph:microsoft-graph:6.2.0'
23+
implementation 'com.microsoft.graph:microsoft-graph:6.2.1'
2424
// Uncomment the line below if you are building an android application
2525
//implementation 'com.google.guava:guava:30.1.1-android'
2626
// This dependency is only needed if you are using a TokenCredential object for authentication
@@ -37,7 +37,7 @@ Add the dependency in `dependencies` in pom.xml
3737
<!-- Include the sdk as a dependency -->
3838
<groupId>com.microsoft.graph</groupId>
3939
<artifactId>microsoft-graph</artifactId>
40-
<version>6.2.0</version>
40+
<version>6.2.1</version>
4141
</dependency>
4242
<dependency>
4343
<!-- This dependency is only needed if you are using a TokenCredential object for authentication -->

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 = 2
30-
mavenPatchVersion = 0
30+
mavenPatchVersion = 1
3131
mavenArtifactSuffix =
3232

3333
#These values are used to run functional tests

gradle/dependencies.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ dependencies {
55
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.2'
66
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.2'
77
testImplementation 'org.mockito:mockito-inline:5.2.0'
8-
8+
99
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
1010
implementation 'jakarta.annotation:jakarta.annotation-api:2.1.1'
1111

12-
// Core Http library
13-
api 'com.microsoft.graph:microsoft-graph-core:3.1.2'
12+
// Core Http library
13+
api 'com.microsoft.graph:microsoft-graph-core:3.1.3'
1414
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.0.2'
1515
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.0.2'
1616
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.0.2'

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
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.2.0";
6+
public static final String VERSION_NAME = "6.2.1";
77
}
88

0 commit comments

Comments
 (0)