diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4cf68cdd15d..32a6b615fc8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -11,6 +11,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
+## [5.21.0] - 2022-04-22
+
+### Added
+
+### Changed
+
+- Bump dependency on Graph-Core to 2.0.12
+
## [5.20.0] - 2022-04-12
### Added
diff --git a/README.md b/README.md
index 0cbfdfbd05f..8135dd3fd73 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ repositories {
dependencies {
// Include the sdk as a dependency
- implementation 'com.microsoft.graph:microsoft-graph:5.20.0'
+ implementation 'com.microsoft.graph:microsoft-graph:5.21.0'
// Uncomment the line below if you are building an android application
//implementation 'com.google.guava:guava:30.1.1-android'
// This dependency is only needed if you are using the TokenCrendentialAuthProvider
diff --git a/gradle.properties b/gradle.properties
index a53ce7fa625..fed02fdcdb3 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -26,7 +26,7 @@ org.gradle.caching=true
mavenGroupId = com.microsoft.graph
mavenArtifactId = microsoft-graph
mavenMajorVersion = 5
-mavenMinorVersion = 20
+mavenMinorVersion = 21
mavenPatchVersion = 0
mavenArtifactSuffix =
diff --git a/gradle/dependencies.gradle b/gradle/dependencies.gradle
index b928ae55cba..2f8b04f5120 100644
--- a/gradle/dependencies.gradle
+++ b/gradle/dependencies.gradle
@@ -11,5 +11,5 @@ dependencies {
implementation 'com.squareup.okhttp3:okhttp:4.9.3'
// Core Http library
- api 'com.microsoft.graph:microsoft-graph-core:2.0.11'
+ api 'com.microsoft.graph:microsoft-graph-core:2.0.12'
}
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
index 57847e76d62..2becc1ad55d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -35,7 +35,7 @@
com.microsoft.graph
microsoft-graph-core
- 2.0.11
+ 2.0.12
org.junit.jupiter
diff --git a/src/main/java/com/microsoft/graph/info/Constants.java b/src/main/java/com/microsoft/graph/info/Constants.java
index def140a8887..136a3820332 100644
--- a/src/main/java/com/microsoft/graph/info/Constants.java
+++ b/src/main/java/com/microsoft/graph/info/Constants.java
@@ -18,7 +18,7 @@ private Constants() {
/** The client secret to use for unit testing */
public static final String CLIENTSECRET = "clientsecret";
/** The SDK version */
- public static final String VERSION_NAME = "5.20.0";
+ public static final String VERSION_NAME = "5.21.0";
}