Skip to content

Commit a763065

Browse files
committed
Bump lib version and update CHANGELOG
1 parent 5b1d930 commit a763065

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
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+
## [3.1.10] - 2024-05-09
15+
16+
### Changed
17+
18+
- Downgraded `jakarta.annotation-api` dependency to `2.1.1` for java 8 compatibility
19+
1420
## [3.1.9] - 2024-04-23
1521

1622
### Changed

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 = 9
28+
mavenPatchVersion = 10
2929
mavenArtifactSuffix =
3030

3131
#These values are used to run functional tests

readme.md

Lines changed: 6 additions & 6 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.6'
25+
implementation 'com.microsoft.graph:microsoft-graph-core:3.1.10'
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.6</version>
40+
<version>3.1.10</version>
4141
<!-- This dependency is only needed if you are using the TokenCredentialAuthProvider -->
4242
<groupId>com.azure</groupId>
4343
<artifactId>azure-identity</artifactId>
@@ -85,9 +85,9 @@ client.newCall(request).enqueue(new Callback() {
8585
@Override
8686
public void onResponse(Call call, Response response) throws IOException {
8787
String responseBody = response.body().string();
88-
// Your processing with the response body
88+
// Your processing with the response body
8989
}
90-
90+
9191
@Override
9292
public void onFailure(Call call, IOException e) {
9393
e.printStackTrace();
@@ -106,9 +106,9 @@ client.newCall(request).enqueue(new Callback() {
106106
@Override
107107
public void onResponse(Call call, Response response) throws IOException {
108108
String responseBody = response.body().string();
109-
// Your processing with the response body
109+
// Your processing with the response body
110110
}
111-
111+
112112
@Override
113113
public void onFailure(Call call, IOException e) {
114114
e.printStackTrace();

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 = 9;
17+
private static final int PATCH = 10;
1818
}
1919

2020
/**

0 commit comments

Comments
 (0)