diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0ad43e536..5ee3f00b9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,4 @@
-## [TBD]
+## [2.6.0]
* Support domain_hint param #2759
## [2.5.1]
diff --git a/MSAL.podspec b/MSAL.podspec
index 06580f317..b7e0654d9 100644
--- a/MSAL.podspec
+++ b/MSAL.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "MSAL"
- s.version = "2.5.1"
+ s.version = "2.6.0"
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 ce75cfdd1..fd28f3106 160000
--- a/MSAL/IdentityCore
+++ b/MSAL/IdentityCore
@@ -1 +1 @@
-Subproject commit ce75cfdd1a7a0204848c96eca8b4ed5266b67417
+Subproject commit fd28f3106e9d7441b2418ed573d289ec1dc0feba
diff --git a/MSAL/resources/ios/Info.plist b/MSAL/resources/ios/Info.plist
index 60be25338..4162571a1 100644
--- a/MSAL/resources/ios/Info.plist
+++ b/MSAL/resources/ios/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.5.1
+ 2.6.0
CFBundleVersion
$(CURRENT_PROJECT_VERSION)
NSPrincipalClass
diff --git a/MSAL/resources/mac/Info.plist b/MSAL/resources/mac/Info.plist
index 0f964d00a..a7dda915b 100644
--- a/MSAL/resources/mac/Info.plist
+++ b/MSAL/resources/mac/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.5.1
+ 2.6.0
CFBundleVersion
$(CURRENT_PROJECT_VERSION)
NSHumanReadableCopyright
diff --git a/MSAL/src/MSAL_Internal.h b/MSAL/src/MSAL_Internal.h
index fb8d16234..6f6756a5c 100644
--- a/MSAL/src/MSAL_Internal.h
+++ b/MSAL/src/MSAL_Internal.h
@@ -26,8 +26,8 @@
//------------------------------------------------------------------------------
#define MSAL_VER_HIGH 2
-#define MSAL_VER_LOW 5
-#define MSAL_VER_PATCH 1
+#define MSAL_VER_LOW 6
+#define MSAL_VER_PATCH 0
#define STR_HELPER(x) #x
#define STR(x) STR_HELPER(x)
diff --git a/Package.swift b/Package.swift
index 9dc97db35..ae2365199 100644
--- a/Package.swift
+++ b/Package.swift
@@ -13,6 +13,6 @@ let package = Package(
targets: ["MSAL"]),
],
targets: [
- .binaryTarget(name: "MSAL", url: "https://github.com/AzureAD/microsoft-authentication-library-for-objc/releases/download/2.5.1/MSAL.zip", checksum: "487557cef9c59e9de4ba1f46fd828e58883e59ef0672fea56a7fbd16507faf98")
+ .binaryTarget(name: "MSAL", url: "https://github.com/AzureAD/microsoft-authentication-library-for-objc/releases/download/2.6.0/MSAL.zip", checksum: "546a5d74bc255ca4881a4f8cc4ea69d63f8c773227224a870675760b6af15674")
]
)