Skip to content

Commit 550b270

Browse files
committed
version bumps
1 parent 2efd4b6 commit 550b270

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

android/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-core
2828
mavenMajorVersion = 3
2929
mavenMinorVersion = 0
30-
mavenPatchVersion = 0
30+
mavenPatchVersion = 9
3131
mavenArtifactSuffix =
3232

3333
#These values are used to run functional tests

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ mavenGroupId = com.microsoft.graph
2525
mavenArtifactId = microsoft-graph-core
2626
mavenMajorVersion = 3
2727
mavenMinorVersion = 0
28-
mavenPatchVersion = 8
28+
mavenPatchVersion = 9
2929
mavenArtifactSuffix =
3030

3131
#These values are used to run functional tests

gradle/dependencies.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ dependencies {
1717
api 'com.squareup.okhttp3:okhttp:4.12.0'
1818
api 'com.azure:azure-core:1.45.0'
1919

20-
api 'com.microsoft.kiota:microsoft-kiota-abstractions:0.9.0'
21-
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:0.9.0'
22-
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:0.9.0'
23-
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:0.9.0'
24-
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:0.9.0'
25-
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:0.9.0'
26-
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:0.9.0'
20+
api 'com.microsoft.kiota:microsoft-kiota-abstractions:0.9.1'
21+
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:0.9.1'
22+
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:0.9.1'
23+
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:0.9.1'
24+
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:0.9.1'
25+
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:0.9.1'
26+
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:0.9.1'
2727
}

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ repositories {
2222
2323
dependencies {
2424
// Include the sdk as a dependency
25-
implementation 'com.microsoft.graph:microsoft-graph-core:3.0.8-SNAPSHOT'
25+
implementation 'com.microsoft.graph:microsoft-graph-core:3.0.9-SNAPSHOT'
2626
// This dependency is only needed if you are using the TokenCredentialAuthProvider
2727
implementation 'com.azure:azure-identity:1.9.2'
2828
}
@@ -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-core</artifactId>
40-
<version>3.0.8</version>
40+
<version>3.0.9</version>
4141
<!-- This dependency is only needed if you are using the TokenCredentialAuthProvider -->
4242
<groupId>com.azure</groupId>
4343
<artifactId>azure-identity</artifactId>

src/main/java/com/microsoft/graph/CoreConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ private CoreConstants() {}
1414
private static class VersionValues {
1515
private static final int MAJOR = 3;
1616
private static final int MINOR = 0;
17-
private static final int PATCH = 8;
17+
private static final int PATCH = 9;
1818
}
1919

2020
/**

0 commit comments

Comments
 (0)