Skip to content

Commit 61a67c2

Browse files
authored
Merge pull request #1525 from microsoftgraph/dev
dev => master
2 parents efc11dc + 4950519 commit 61a67c2

File tree

6 files changed

+17
-12
lines changed

6 files changed

+17
-12
lines changed

.github/workflows/git-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v4
1616
- name: Download Build Artifact
17-
uses: dawidd6/[email protected].1
17+
uses: dawidd6/[email protected].2
1818
with:
1919
workflow: build-and-publish.yml
2020
workflow_conclusion: success

CHANGELOG.md

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

1212
### Changed
1313

14+
## [3.1.5] - 2024-02-27
15+
16+
### Changed
17+
- Bumps Kiota-Java abstractions, authentication, http, and serialization components
18+
1419
## [3.1.4] - 2024-02-21
1520

1621
- Bumps Kiota-Java abstractions, authentication, http, and serialization components

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 = 1
28-
mavenPatchVersion = 4
28+
mavenPatchVersion = 5
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
@@ -16,11 +16,11 @@ dependencies {
1616
api 'com.squareup.okhttp3:okhttp:4.12.0'
1717
api 'com.azure:azure-core:1.46.0'
1818

19-
api 'com.microsoft.kiota:microsoft-kiota-abstractions:1.0.3'
20-
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.0.3'
21-
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.0.3'
22-
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.0.3'
23-
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.0.3'
24-
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.0.3'
25-
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.0.3'
19+
api 'com.microsoft.kiota:microsoft-kiota-abstractions:1.0.4'
20+
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.0.4'
21+
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.0.4'
22+
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.0.4'
23+
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.0.4'
24+
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.0.4'
25+
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.0.4'
2626
}

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.1.4'
25+
implementation 'com.microsoft.graph:microsoft-graph-core:3.1.5'
2626
// This dependency is only needed if you are using the TokenCredentialAuthProvider
2727
implementation 'com.azure:azure-identity:1.11.0'
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.1.4</version>
40+
<version>3.1.5</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/core/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 = 1;
17-
private static final int PATCH = 3;
17+
private static final int PATCH = 5;
1818
}
1919

2020
/**

0 commit comments

Comments
 (0)