diff --git a/FirebaseAnonymousAuthUI.podspec b/FirebaseAnonymousAuthUI.podspec index f2791b299c..c806366c96 100644 --- a/FirebaseAnonymousAuthUI.podspec +++ b/FirebaseAnonymousAuthUI.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'FirebaseAnonymousAuthUI' - s.version = '14.0.0' + s.version = '14.1.0' s.summary = 'Provides anonymous auth support for FirebaseAuthUI.' s.homepage = 'https://github.com/firebase/FirebaseUI-iOS' s.license = { :type => 'Apache 2.0', :file => 'LICENSE' } diff --git a/FirebaseAuthUI.podspec b/FirebaseAuthUI.podspec index 3b7ceacfdb..a4b4b8c4b5 100644 --- a/FirebaseAuthUI.podspec +++ b/FirebaseAuthUI.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'FirebaseAuthUI' - s.version = '14.0.0' + s.version = '14.1.0' s.summary = 'A prebuilt authentication UI flow for Firebase Auth.' s.homepage = 'https://github.com/firebase/FirebaseUI-iOS' s.license = { :type => 'Apache 2.0', :file => 'LICENSE' } diff --git a/FirebaseAuthUI/Sources/FUIAccountSettingsOperationDeleteAccount.m b/FirebaseAuthUI/Sources/FUIAccountSettingsOperationDeleteAccount.m index 76c1180f6a..ab30c3fdf5 100644 --- a/FirebaseAuthUI/Sources/FUIAccountSettingsOperationDeleteAccount.m +++ b/FirebaseAuthUI/Sources/FUIAccountSettingsOperationDeleteAccount.m @@ -19,6 +19,8 @@ #import "FirebaseAuthUI/Sources/FUIAccountSettingsOperation_Internal.h" #import "FirebaseAuthUI/Sources/FUIAccountSettingsOperationForgotPassword.h" +@import FirebaseAuth; + NS_ASSUME_NONNULL_BEGIN @implementation FUIAccountSettingsOperationDeleteAccount diff --git a/FirebaseAuthUI/Sources/FUIAccountSettingsOperationForgotPassword.m b/FirebaseAuthUI/Sources/FUIAccountSettingsOperationForgotPassword.m index 5e2b598df1..889bf8c49d 100644 --- a/FirebaseAuthUI/Sources/FUIAccountSettingsOperationForgotPassword.m +++ b/FirebaseAuthUI/Sources/FUIAccountSettingsOperationForgotPassword.m @@ -19,6 +19,8 @@ #import "FirebaseAuthUI/Sources/FUIAccountSettingsOperation_Internal.h" #import "FirebaseAuthUI/Sources/Public/FirebaseAuthUI/FUIAuthBaseViewController_Internal.h" +@import FirebaseAuth; + NS_ASSUME_NONNULL_BEGIN @implementation FUIAccountSettingsOperationForgotPassword diff --git a/FirebaseAuthUI/Sources/FUIAccountSettingsOperationUnlinkAccount.m b/FirebaseAuthUI/Sources/FUIAccountSettingsOperationUnlinkAccount.m index a0484b56a0..a97995646b 100644 --- a/FirebaseAuthUI/Sources/FUIAccountSettingsOperationUnlinkAccount.m +++ b/FirebaseAuthUI/Sources/FUIAccountSettingsOperationUnlinkAccount.m @@ -19,6 +19,8 @@ #import "FirebaseAuthUI/Sources/FUIAccountSettingsOperation_Internal.h" #import "FirebaseAuthUI/Sources/Public/FirebaseAuthUI/FUIAuthBaseViewController_Internal.h" +@import FirebaseAuth; + NS_ASSUME_NONNULL_BEGIN @interface FUIAccountSettingsOperationUnlinkAccount () diff --git a/FirebaseAuthUI/Sources/FUIAccountSettingsOperationUpdateEmail.m b/FirebaseAuthUI/Sources/FUIAccountSettingsOperationUpdateEmail.m index 324ae3222b..4bf7e94b3e 100644 --- a/FirebaseAuthUI/Sources/FUIAccountSettingsOperationUpdateEmail.m +++ b/FirebaseAuthUI/Sources/FUIAccountSettingsOperationUpdateEmail.m @@ -19,6 +19,8 @@ #import "FirebaseAuthUI/Sources/FUIAccountSettingsOperation_Internal.h" #import "FirebaseAuthUI/Sources/Public/FirebaseAuthUI/FUIAuthBaseViewController_Internal.h" +@import FirebaseAuth; + NS_ASSUME_NONNULL_BEGIN @implementation FUIAccountSettingsOperationUpdateEmail diff --git a/FirebaseAuthUI/Sources/FUIAccountSettingsOperationUpdateName.m b/FirebaseAuthUI/Sources/FUIAccountSettingsOperationUpdateName.m index d1836ac767..0f0e34f0ec 100644 --- a/FirebaseAuthUI/Sources/FUIAccountSettingsOperationUpdateName.m +++ b/FirebaseAuthUI/Sources/FUIAccountSettingsOperationUpdateName.m @@ -18,6 +18,8 @@ #import "FirebaseAuthUI/Sources/FUIAccountSettingsOperation_Internal.h" +@import FirebaseAuth; + NS_ASSUME_NONNULL_BEGIN @implementation FUIAccountSettingsOperationUpdateName diff --git a/FirebaseAuthUI/Sources/FUIAccountSettingsOperationUpdatePassword.m b/FirebaseAuthUI/Sources/FUIAccountSettingsOperationUpdatePassword.m index b7e44a9858..120491524d 100644 --- a/FirebaseAuthUI/Sources/FUIAccountSettingsOperationUpdatePassword.m +++ b/FirebaseAuthUI/Sources/FUIAccountSettingsOperationUpdatePassword.m @@ -18,6 +18,8 @@ #import "FirebaseAuthUI/Sources/FUIAccountSettingsOperation_Internal.h" +@import FirebaseAuth; + NS_ASSUME_NONNULL_BEGIN @interface FUIAccountSettingsOperationUpdatePassword () diff --git a/FirebaseAuthUI/Sources/FUIAccountSettingsOperation_Internal.h b/FirebaseAuthUI/Sources/FUIAccountSettingsOperation_Internal.h index 94e8901fda..33a989d6c0 100644 --- a/FirebaseAuthUI/Sources/FUIAccountSettingsOperation_Internal.h +++ b/FirebaseAuthUI/Sources/FUIAccountSettingsOperation_Internal.h @@ -16,7 +16,7 @@ #import "FirebaseAuthUI/Sources/FUIAccountSettingsOperation.h" -#import +@import FirebaseAuth; #import "FirebaseAuthUI/Sources/Public/FirebaseAuthUI/FUIAccountSettingsOperationType.h" #import "FirebaseAuthUI/Sources/Public/FirebaseAuthUI/FUIAuthStrings.h" diff --git a/FirebaseAuthUI/Sources/FUIAccountSettingsViewController.m b/FirebaseAuthUI/Sources/FUIAccountSettingsViewController.m index eff14abf90..069d13abc9 100644 --- a/FirebaseAuthUI/Sources/FUIAccountSettingsViewController.m +++ b/FirebaseAuthUI/Sources/FUIAccountSettingsViewController.m @@ -16,7 +16,7 @@ #import "FirebaseAuthUI/Sources/Public/FirebaseAuthUI/FUIAccountSettingsViewController.h" -#import +@import FirebaseAuth; #import "FirebaseAuthUI/Sources/FUIAccountSettingsOperation.h" #import "FirebaseAuthUI/Sources/FUIAccountSettingsOperationDeleteAccount.h" diff --git a/FirebaseAuthUI/Sources/FUIAuth.m b/FirebaseAuthUI/Sources/FUIAuth.m index 0d43914ed7..8ef6c8f0d6 100644 --- a/FirebaseAuthUI/Sources/FUIAuth.m +++ b/FirebaseAuthUI/Sources/FUIAuth.m @@ -20,14 +20,14 @@ #import #import -#import -#import #import "FirebaseAuthUI/Sources/Public/FirebaseAuthUI/FUIAuthBaseViewController_Internal.h" #import "FirebaseAuthUI/Sources/Public/FirebaseAuthUI/FUIAuthErrors.h" #import "FirebaseAuthUI/Sources/Public/FirebaseAuthUI/FUIAuthErrorUtils.h" #import "FirebaseAuthUI/Sources/Public/FirebaseAuthUI/FUIAuthPickerViewController.h" #import "FirebaseAuthUI/Sources/Public/FirebaseAuthUI/FUIAuthStrings.h" +@import FirebaseAuth; + /** @var kAppNameCodingKey @brief The key used to encode the app Name for NSCoding. */ diff --git a/FirebaseDatabaseUI.podspec b/FirebaseDatabaseUI.podspec index 3c29bff69f..8647bf3471 100644 --- a/FirebaseDatabaseUI.podspec +++ b/FirebaseDatabaseUI.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'FirebaseDatabaseUI' - s.version = '14.0.0' + s.version = '14.1.0' s.summary = 'Prebuilt data sources and UI bindings for Firebase Database.' s.homepage = 'https://github.com/firebase/FirebaseUI-iOS' s.license = { :type => 'Apache 2.0', :file => 'LICENSE' } diff --git a/FirebaseEmailAuthUI.podspec b/FirebaseEmailAuthUI.podspec index 5638888fbc..5173b2506e 100644 --- a/FirebaseEmailAuthUI.podspec +++ b/FirebaseEmailAuthUI.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'FirebaseEmailAuthUI' - s.version = '14.0.0' + s.version = '14.1.0' s.summary = 'An email authentication provider for FirebaseAuthUI.' s.homepage = 'https://github.com/firebase/FirebaseUI-iOS' s.license = { :type => 'Apache 2.0', :file => 'LICENSE' } diff --git a/FirebaseFacebookAuthUI.podspec b/FirebaseFacebookAuthUI.podspec index 1ebc1a6341..3548874e6c 100644 --- a/FirebaseFacebookAuthUI.podspec +++ b/FirebaseFacebookAuthUI.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'FirebaseFacebookAuthUI' - s.version = '14.0.0' + s.version = '14.1.0' s.summary = 'A Facebook auth provider for FirebaseAuthUI.' s.homepage = 'https://github.com/firebase/FirebaseUI-iOS' s.license = { :type => 'Apache 2.0', :file => 'LICENSE' } diff --git a/FirebaseFirestoreUI.podspec b/FirebaseFirestoreUI.podspec index 468d35509c..659de4bc66 100644 --- a/FirebaseFirestoreUI.podspec +++ b/FirebaseFirestoreUI.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'FirebaseFirestoreUI' - s.version = '14.0.0' + s.version = '14.1.0' s.summary = 'Data libraries and UI bindings for Firestore.' s.homepage = 'https://github.com/firebase/FirebaseUI-iOS' s.license = { :type => 'Apache 2.0', :file => 'LICENSE' } diff --git a/FirebaseGoogleAuthUI.podspec b/FirebaseGoogleAuthUI.podspec index ede7eaa987..2681d4ce27 100644 --- a/FirebaseGoogleAuthUI.podspec +++ b/FirebaseGoogleAuthUI.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'FirebaseGoogleAuthUI' - s.version = '14.0.0' + s.version = '14.1.0' s.summary = 'Google authentication for FirebaseAuthUI.' s.homepage = 'https://github.com/firebase/FirebaseUI-iOS' s.license = { :type => 'Apache 2.0', :file => 'LICENSE' } diff --git a/FirebaseOAuthUI.podspec b/FirebaseOAuthUI.podspec index 4d5206165b..b1c701d004 100644 --- a/FirebaseOAuthUI.podspec +++ b/FirebaseOAuthUI.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'FirebaseOAuthUI' - s.version = '14.0.0' + s.version = '14.1.0' s.summary = 'A collection of OAuth providers for FirebaseAuthUI.' s.homepage = 'https://github.com/firebase/FirebaseUI-iOS' s.license = { :type => 'Apache 2.0', :file => 'LICENSE' } diff --git a/FirebasePhoneAuthUI.podspec b/FirebasePhoneAuthUI.podspec index 6727204462..4ea40ad0b3 100644 --- a/FirebasePhoneAuthUI.podspec +++ b/FirebasePhoneAuthUI.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'FirebasePhoneAuthUI' - s.version = '14.0.0' + s.version = '14.1.0' s.summary = 'A phone auth provider for FirebaseAuthUI.' s.homepage = 'https://github.com/firebase/FirebaseUI-iOS' s.license = { :type => 'Apache 2.0', :file => 'LICENSE' } diff --git a/FirebaseStorageUI.podspec b/FirebaseStorageUI.podspec index 34094cecef..379466d5f3 100644 --- a/FirebaseStorageUI.podspec +++ b/FirebaseStorageUI.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'FirebaseStorageUI' - s.version = '14.0.0' + s.version = '14.1.0' s.summary = 'UI binding libraries for Firebase.' s.homepage = 'https://github.com/firebase/FirebaseUI-iOS' s.license = { :type => 'Apache 2.0', :file => 'LICENSE' } diff --git a/FirebaseUI.podspec b/FirebaseUI.podspec index 751d62c842..7294b06668 100644 --- a/FirebaseUI.podspec +++ b/FirebaseUI.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'FirebaseUI' - s.version = '14.0.0' + s.version = '14.1.0' s.summary = 'UI binding libraries for Firebase.' s.homepage = 'https://github.com/firebase/FirebaseUI-iOS' s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }