diff --git a/CHANGELOG.md b/CHANGELOG.md
index 19f9c0058..780095a52 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,6 @@
+## [2.5.2]
+* Update changes from version 2.4.3
+
## [2.5.1]
* Allow duna external idp on MacOs
@@ -5,6 +8,9 @@
* Awaiting MFA Delegate now automatically returns the AuthMethods to be used when calling MFA Challenge #2687
* SDK now handles SMS as strong authentication method #2722
+## [2.4.3]
+* Fix issue with legacy keychain on macOS.
+
## [2.4.2]
* Bug fix to prevent crash when deallocating STK SecKeyRef
diff --git a/MSAL.podspec b/MSAL.podspec
index 6c439557f..8af99d184 100644
--- a/MSAL.podspec
+++ b/MSAL.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "MSAL"
- s.version = "2.5.0"
+ s.version = "2.5.2"
s.summary = "Microsoft Authentication Library (MSAL) for iOS"
s.description = <<-DESC
The MSAL library for iOS gives your app the ability to begin using the Microsoft Cloud by supporting Microsoft Azure Active Directory and Microsoft Accounts in a converged experience using industry standard OAuth2 and OpenID Connect. The library also supports Microsoft Azure B2C for those using our hosted identity management service.
diff --git a/MSAL/IdentityCore b/MSAL/IdentityCore
index 3f436b517..92d0e4bfe 160000
--- a/MSAL/IdentityCore
+++ b/MSAL/IdentityCore
@@ -1 +1 @@
-Subproject commit 3f436b517d8422d57a03145646867040e8e32380
+Subproject commit 92d0e4bfe8f4ef511e851f137fd1ff65be02ccc5
diff --git a/MSAL/resources/ios/Info.plist b/MSAL/resources/ios/Info.plist
index 7e9e1f4a6..c55efd0eb 100644
--- a/MSAL/resources/ios/Info.plist
+++ b/MSAL/resources/ios/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.5.0
+ 2.5.2
CFBundleVersion
$(CURRENT_PROJECT_VERSION)
NSPrincipalClass
diff --git a/MSAL/resources/mac/Info.plist b/MSAL/resources/mac/Info.plist
index 3e330281c..3dcb0d509 100644
--- a/MSAL/resources/mac/Info.plist
+++ b/MSAL/resources/mac/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.5.0
+ 2.5.2
CFBundleVersion
$(CURRENT_PROJECT_VERSION)
NSHumanReadableCopyright
diff --git a/MSAL/src/MSAL_Internal.h b/MSAL/src/MSAL_Internal.h
index 68be866b9..bc793b5cb 100644
--- a/MSAL/src/MSAL_Internal.h
+++ b/MSAL/src/MSAL_Internal.h
@@ -27,7 +27,7 @@
#define MSAL_VER_HIGH 2
#define MSAL_VER_LOW 5
-#define MSAL_VER_PATCH 0
+#define MSAL_VER_PATCH 2
#define STR_HELPER(x) #x
#define STR(x) STR_HELPER(x)