Skip to content

Commit 6a6b5c7

Browse files
authored
Merge pull request #368 from microsoftgraph/prepareForRelease
Prepare for Release
2 parents 11d2a77 + 739e112 commit 6a6b5c7

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

CHANGELOG.md

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

1010
### Added
1111

12+
### Changed
13+
14+
## [2.0.10] - 2021-11-16
15+
16+
### Added
17+
1218
- Added support for cancelling requests #361
1319

1420
### 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 = 2
2727
mavenMinorVersion = 0
28-
mavenPatchVersion = 9
28+
mavenPatchVersion = 10
2929
mavenArtifactSuffix =
3030

3131
#These values are used to run functional tests

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<groupId>com.microsoft.graph</groupId>
1010
<artifactId>microsoft-graph-core</artifactId>
11-
<version>2.0.9</version>
11+
<version>2.0.10</version>
1212
<packaging>pom</packaging>
1313

1414
<properties>

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:2.0.9'
25+
implementation 'com.microsoft.graph:microsoft-graph-core:2.0.10'
2626
// This dependency is only needed if you are using the TokenCrendentialAuthProvider
2727
implementation 'com.azure:azure-identity:1.3.1'
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>2.0.9</version>
40+
<version>2.0.10</version>
4141
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
4242
<groupId>com.azure</groupId>
4343
<artifactId>azure-identity</artifactId>

src/main/java/com/microsoft/graph/httpcore/TelemetryHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class TelemetryHandler implements Interceptor{
2525
/**
2626
* Current SDK version
2727
*/
28-
public static final String VERSION = "v2.0.9";
28+
public static final String VERSION = "v2.0.10";
2929
/**
3030
* Verion prefix
3131
*/

0 commit comments

Comments
 (0)