Skip to content

Commit 3f77183

Browse files
authored
Merge pull request #1718 from microsoftgraph/bumpTo601
bump to version 6.0.1 to clear up possible dependency misalignment
2 parents e563e12 + 1361fa2 commit 3f77183

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Microsoft Graph SDK for Java
2-
## Version 6.0.0 now in Release Candidate stage!
2+
## Version 6.0.1 now in Release Candidate stage!
33

44
[![Download](https://img.shields.io/maven-central/v/com.microsoft.graph/microsoft-graph.svg)](https://search.maven.org/artifact/com.microsoft.graph/microsoft-graph)
55

@@ -21,7 +21,7 @@ repositories {
2121
2222
dependencies {
2323
// Include the sdk as a dependency
24-
implementation 'com.microsoft.graph:microsoft-graph:6.0.0-SNAPSHOT'
24+
implementation 'com.microsoft.graph:microsoft-graph:6.0.1-SNAPSHOT'
2525
// Uncomment the line below if you are building an android application
2626
//implementation 'com.google.guava:guava:30.1.1-android'
2727
// This dependency is only needed if you are using a TokenCredential object for authentication
@@ -38,7 +38,7 @@ Add the dependency in `dependencies` in pom.xml
3838
<!-- Include the sdk as a dependency -->
3939
<groupId>com.microsoft.graph</groupId>
4040
<artifactId>microsoft-graph</artifactId>
41-
<version>6.0.0-SNAPSHOT</version>
41+
<version>6.0.1-SNAPSHOT</version>
4242
</dependency>
4343
<dependency>
4444
<!-- 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 = 0
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
@@ -10,7 +10,7 @@ dependencies {
1010
implementation 'jakarta.annotation:jakarta.annotation-api:2.1.1'
1111

1212
// Core Http library
13-
api 'com.microsoft.graph:microsoft-graph-core:3.0.11-SNAPSHOT'
13+
api 'com.microsoft.graph:microsoft-graph-core:3.0.12-SNAPSHOT'
1414
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:0.11.2'
1515
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:0.11.2'
1616
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:0.11.2'

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ public final class Constants {
55
private Constants() {
66
}
77
/** The SDK version */
8-
public static final String VERSION_NAME = "6.0.0";
8+
public static final String VERSION_NAME = "6.0.1-SNAPSHOT";
99
}

0 commit comments

Comments
 (0)