diff --git a/MSAL.podspec b/MSAL.podspec
index e9a4c124d4..ab857e2b3b 100644
--- a/MSAL.podspec
+++ b/MSAL.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "MSAL"
- s.version = "1.6.0"
+ s.version = "1.6.1"
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/resources/ios/Info.plist b/MSAL/resources/ios/Info.plist
index afe8e74541..789a806555 100644
--- a/MSAL/resources/ios/Info.plist
+++ b/MSAL/resources/ios/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 1.6.0
+ 1.6.1
CFBundleVersion
$(CURRENT_PROJECT_VERSION)
NSPrincipalClass
diff --git a/MSAL/resources/mac/Info.plist b/MSAL/resources/mac/Info.plist
index 82592bd485..aaff4089ac 100644
--- a/MSAL/resources/mac/Info.plist
+++ b/MSAL/resources/mac/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 1.6.0
+ 1.6.1
CFBundleVersion
$(CURRENT_PROJECT_VERSION)
NSHumanReadableCopyright
diff --git a/MSAL/src/MSAL_Internal.h b/MSAL/src/MSAL_Internal.h
index 11bea15b36..86334d4b6d 100644
--- a/MSAL/src/MSAL_Internal.h
+++ b/MSAL/src/MSAL_Internal.h
@@ -27,7 +27,7 @@
#define MSAL_VER_HIGH 1
#define MSAL_VER_LOW 6
-#define MSAL_VER_PATCH 0
+#define MSAL_VER_PATCH 1
#define STR_HELPER(x) #x
#define STR(x) STR_HELPER(x)
diff --git a/Package.swift b/Package.swift
index 1f5dee0750..2880c516e3 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/1.6.0/MSAL.zip", checksum: "f8efd81a03c30af28a778ea599b8d80858af199a2c950cb9fc95a88c0b54ce66")
+ .binaryTarget(name: "MSAL", url: "https://github.com/AzureAD/microsoft-authentication-library-for-objc/releases/download/1.6.1/MSAL.zip", checksum: "bb0b362cd854b6177dcc8a462c6a76c33b4fcaf987b34fc641cb511ee8a4ddd4")
]
)