Skip to content

Commit 398595d

Browse files
Merge pull request #1058 from microsoftgraph/core2.0.12Dependency
Take dependency on graph-core 2.0.12
2 parents 7e1ab03 + 3bce56b commit 398595d

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed

CHANGELOG.md

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

1212
### Changed
1313

14+
## [5.21.0] - 2022-04-22
15+
16+
### Added
17+
18+
### Changed
19+
20+
- Bump dependency on Graph-Core to 2.0.12
21+
1422
## [5.20.0] - 2022-04-12
1523

1624
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ repositories {
1919
2020
dependencies {
2121
// Include the sdk as a dependency
22-
implementation 'com.microsoft.graph:microsoft-graph:5.20.0'
22+
implementation 'com.microsoft.graph:microsoft-graph:5.21.0'
2323
// Uncomment the line below if you are building an android application
2424
//implementation 'com.google.guava:guava:30.1.1-android'
2525
// This dependency is only needed if you are using the TokenCrendentialAuthProvider

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ org.gradle.caching=true
2626
mavenGroupId = com.microsoft.graph
2727
mavenArtifactId = microsoft-graph
2828
mavenMajorVersion = 5
29-
mavenMinorVersion = 20
29+
mavenMinorVersion = 21
3030
mavenPatchVersion = 0
3131
mavenArtifactSuffix =
3232

gradle/dependencies.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ dependencies {
1111
implementation 'com.squareup.okhttp3:okhttp:4.9.3'
1212

1313
// Core Http library
14-
api 'com.microsoft.graph:microsoft-graph-core:2.0.11'
14+
api 'com.microsoft.graph:microsoft-graph-core:2.0.12'
1515
}

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<dependency>
3636
<groupId>com.microsoft.graph</groupId>
3737
<artifactId>microsoft-graph-core</artifactId>
38-
<version>2.0.11</version>
38+
<version>2.0.12</version>
3939
</dependency>
4040
<dependency>
4141
<groupId>org.junit.jupiter</groupId>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ private Constants() {
1818
/** The client secret to use for unit testing */
1919
public static final String CLIENTSECRET = "clientsecret";
2020
/** The SDK version */
21-
public static final String VERSION_NAME = "5.20.0";
21+
public static final String VERSION_NAME = "5.21.0";
2222
}
2323

2424

0 commit comments

Comments
 (0)