Skip to content

Commit 7836217

Browse files
davidairpaulb777
authored andcommitted
Update versions for Release 6.6.0
1 parent 61b904d commit 7836217

16 files changed

+42
-30
lines changed

Example/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ target 'Core_Example_iOS' do
2121
# The next line is the forcing function for the Firebase pod. The Firebase
2222
# version's subspecs should depend on the component versions in the
2323
# corresponding podspec's in this repo.
24-
pod 'Firebase/CoreOnly', '6.5.0'
24+
pod 'Firebase/CoreOnly', '6.6.0'
2525

2626
target 'Core_Tests_iOS' do
2727
inherit! :search_paths

FirebaseAuth.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseAuth'
3-
s.version = '6.2.1'
3+
s.version = '6.2.2'
44
s.summary = 'The official iOS client for Firebase Authentication (plus community support for macOS and tvOS)'
55

66
s.description = <<-DESC
@@ -62,7 +62,7 @@ supports email and password accounts, as well as several 3rd party authenticatio
6262
s.framework = 'Security'
6363
s.ios.framework = 'SafariServices'
6464
s.dependency 'FirebaseAuthInterop', '~> 1.0'
65-
s.dependency 'FirebaseCore', '~> 6.0'
65+
s.dependency 'FirebaseCore', '~> 6.2'
6666
s.dependency 'GoogleUtilities/AppDelegateSwizzler', '~> 6.2'
6767
s.dependency 'GoogleUtilities/Environment', '~> 6.2'
6868
s.dependency 'GTMSessionFetcher/Core', '~> 1.1'

FirebaseCore.podspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseCore'
3-
s.version = '6.1.0'
3+
s.version = '6.2.0'
44
s.summary = 'Firebase Core for iOS (plus community support for macOS and tvOS)'
55

66
s.description = <<-DESC
@@ -33,13 +33,13 @@ Firebase Core includes FIRApp and FIROptions which provide central configuration
3333
s.tvos.framework = 'UIKit'
3434
s.dependency 'GoogleUtilities/Environment', '~> 6.2'
3535
s.dependency 'GoogleUtilities/Logger', '~> 6.2'
36-
s.dependency 'FirebaseCoreDiagnosticsInterop', '~> 0.1'
37-
s.dependency 'FirebaseCoreDiagnostics', '~> 0.1'
36+
s.dependency 'FirebaseCoreDiagnosticsInterop', '~> 1.0'
37+
s.dependency 'FirebaseCoreDiagnostics', '~> 1.0'
3838

3939
s.pod_target_xcconfig = {
4040
'GCC_C_LANGUAGE_STANDARD' => 'c99',
4141
'GCC_PREPROCESSOR_DEFINITIONS' =>
42-
'FIRCore_VERSION=' + s.version.to_s + ' Firebase_VERSION=6.5.0',
42+
'FIRCore_VERSION=' + s.version.to_s + ' Firebase_VERSION=6.6.0',
4343
'OTHER_CFLAGS' => '-fno-autolink'
4444
}
4545
s.test_spec 'unit' do |unit_tests|

FirebaseCoreDiagnostics.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseCoreDiagnostics'
3-
s.version = '0.1.0'
3+
s.version = '1.0.0'
44
s.summary = 'Firebase Core Diagnostics'
55

66
s.description = <<-DESC
@@ -44,8 +44,8 @@ non-Cocoapod integration. This library also respects the Firebase global data co
4444
s.source_files = 'Firebase/CoreDiagnostics/FIRCDLibrary/**/*.[cmh]'
4545
s.framework = 'Foundation'
4646

47-
s.dependency 'FirebaseCoreDiagnosticsInterop', '~> 0.1'
48-
s.dependency 'GoogleDataTransportCCTSupport', '~> 0.2'
47+
s.dependency 'FirebaseCoreDiagnosticsInterop', '~> 1.0'
48+
s.dependency 'GoogleDataTransportCCTSupport', '~> 1.0'
4949
s.dependency 'GoogleUtilities/Environment', '~> 6.2'
5050
s.dependency 'GoogleUtilities/Logger', '~> 6.2'
5151

FirebaseCoreDiagnosticsInterop.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseCoreDiagnosticsInterop'
3-
s.version = '0.1.0'
3+
s.version = '1.0.0'
44
s.summary = 'Interfaces that allow other Firebase SDKs to use CoreDiagnostics functionality.'
55

66
s.description = <<-DESC

FirebaseDynamicLinks.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseDynamicLinks'
3-
s.version = '4.0.1'
3+
s.version = '4.0.2'
44
s.summary = 'Firebase DynamicLinks for iOS'
55

66
s.description = <<-DESC
@@ -26,8 +26,8 @@ Firebase Dynamic Links are deep links that enhance user experience and increase
2626
s.public_header_files = 'Firebase/DynamicLinks/Public/*.h'
2727
s.frameworks = 'AssetsLibrary', 'MessageUI', 'QuartzCore'
2828
s.weak_framework = 'WebKit'
29-
s.dependency 'FirebaseCore', '~> 6.0'
30-
s.dependency 'FirebaseAnalyticsInterop', '~> 1.0'
29+
s.dependency 'FirebaseCore', '~> 6.2'
30+
s.dependency 'FirebaseAnalyticsInterop', '~> 1.3'
3131

3232
s.pod_target_xcconfig = {
3333
'GCC_C_LANGUAGE_STANDARD' => 'c99',

FirebaseFirestore.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseFirestore'
3-
s.version = '1.4.2'
3+
s.version = '1.4.3'
44
s.summary = 'Google Cloud Firestore for iOS'
55

66
s.description = <<-DESC
@@ -52,7 +52,7 @@ Google Cloud Firestore is a NoSQL document database built for automatic scaling,
5252
s.public_header_files = 'Firestore/Source/Public/*.h'
5353

5454
s.dependency 'FirebaseAuthInterop', '~> 1.0'
55-
s.dependency 'FirebaseCore', '~> 6.0'
55+
s.dependency 'FirebaseCore', '~> 6.2'
5656
s.dependency 'gRPC-C++', '0.0.9'
5757
s.dependency 'leveldb-library', '~> 1.20'
5858
s.dependency 'Protobuf', '~> 3.1'

FirebaseInAppMessaging.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseInAppMessaging'
3-
s.version = '0.15.2'
3+
s.version = '0.15.3'
44
s.summary = 'Firebase In-App Messaging for iOS'
55

66
s.description = <<-DESC
@@ -32,7 +32,7 @@ See more product details at https://firebase.google.com/products/in-app-messagin
3232
'FIRInAppMessaging_LIB_VERSION=' + String(s.version)
3333
}
3434

35-
s.dependency 'FirebaseCore', '~> 6.0'
36-
s.ios.dependency 'FirebaseAnalyticsInterop', '~> 1.2'
35+
s.dependency 'FirebaseCore', '~> 6.2'
36+
s.ios.dependency 'FirebaseAnalyticsInterop', '~> 1.3'
3737
s.dependency 'FirebaseInstanceID', '~> 4.0'
3838
end

FirebaseInAppMessagingDisplay.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseInAppMessagingDisplay'
3-
s.version = '0.15.2'
3+
s.version = '0.15.3'
44
s.summary = 'Firebase In-App Messaging UI for iOS'
55

66
s.description = <<-DESC
@@ -40,6 +40,6 @@ Firebase In-App Messaging SDK.
4040
'FIRInAppMessagingDisplay_LIB_VERSION=' + String(s.version)
4141
}
4242

43-
s.dependency 'FirebaseCore', '~> 6.0'
43+
s.dependency 'FirebaseCore', '~> 6.2'
4444
s.dependency 'FirebaseInAppMessaging', '>=0.15.0'
4545
end

FirebaseMessaging.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseMessaging'
3-
s.version = '4.1.1'
3+
s.version = '4.1.2'
44
s.summary = 'Firebase Messaging for iOS'
55

66
s.description = <<-DESC
@@ -40,8 +40,8 @@ device, and it is completely free.
4040
}
4141
s.framework = 'SystemConfiguration'
4242
s.weak_framework = 'UserNotifications'
43-
s.dependency 'FirebaseAnalyticsInterop', '~> 1.1'
44-
s.dependency 'FirebaseCore', '~> 6.0'
43+
s.dependency 'FirebaseAnalyticsInterop', '~> 1.3'
44+
s.dependency 'FirebaseCore', '~> 6.2'
4545
s.dependency 'FirebaseInstanceID', '~> 4.1'
4646
s.dependency 'GoogleUtilities/AppDelegateSwizzler', '~> 6.2'
4747
s.dependency 'GoogleUtilities/Reachability', '~> 6.2'

0 commit comments

Comments
 (0)