Skip to content

Commit 01d522f

Browse files
committed
Update versions for Release 6.13.0
1 parent ce19796 commit 01d522f

13 files changed

+32
-21
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.12.0'
24+
pod 'Firebase/CoreOnly', '6.13.0'
2525

2626
target 'Core_Tests_iOS' do
2727
inherit! :search_paths

Firebase.podspec

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

66
s.description = <<-DESC
@@ -31,12 +31,12 @@ Simplify your iOS development, grow your user base, and monetize more effectivel
3131
s.default_subspec = 'Core'
3232

3333
s.subspec 'Core' do |ss|
34-
ss.ios.dependency 'FirebaseAnalytics', '6.1.5'
34+
ss.ios.dependency 'FirebaseAnalytics', '6.1.6'
3535
ss.dependency 'Firebase/CoreOnly'
3636
end
3737

3838
s.subspec 'CoreOnly' do |ss|
39-
ss.dependency 'FirebaseCore', '6.3.3'
39+
ss.dependency 'FirebaseCore', '6.4.0'
4040
ss.source_files = 'CoreOnly/Sources/Firebase.h'
4141
ss.preserve_paths = 'CoreOnly/Sources/module.modulemap'
4242
ss.user_target_xcconfig = {
@@ -60,7 +60,7 @@ Simplify your iOS development, grow your user base, and monetize more effectivel
6060

6161
s.subspec 'Auth' do |ss|
6262
ss.dependency 'Firebase/CoreOnly'
63-
ss.dependency 'FirebaseAuth', '~> 6.3.1'
63+
ss.dependency 'FirebaseAuth', '~> 6.4.0'
6464
end
6565

6666
s.subspec 'Database' do |ss|
@@ -75,7 +75,7 @@ Simplify your iOS development, grow your user base, and monetize more effectivel
7575

7676
s.subspec 'Firestore' do |ss|
7777
ss.dependency 'Firebase/CoreOnly'
78-
ss.dependency 'FirebaseFirestore', '~> 1.7.0'
78+
ss.dependency 'FirebaseFirestore', '~> 1.8.0'
7979
end
8080

8181
s.subspec 'Functions' do |ss|
@@ -95,22 +95,22 @@ Simplify your iOS development, grow your user base, and monetize more effectivel
9595

9696
s.subspec 'Messaging' do |ss|
9797
ss.dependency 'Firebase/CoreOnly'
98-
ss.dependency 'FirebaseMessaging', '~> 4.1.8'
98+
ss.dependency 'FirebaseMessaging', '~> 4.1.9'
9999
end
100100

101101
s.subspec 'Performance' do |ss|
102102
ss.dependency 'Firebase/CoreOnly'
103-
ss.ios.dependency 'FirebasePerformance', '~> 3.1.6'
103+
ss.ios.dependency 'FirebasePerformance', '~> 3.1.7'
104104
end
105105

106106
s.subspec 'RemoteConfig' do |ss|
107107
ss.dependency 'Firebase/CoreOnly'
108-
ss.dependency 'FirebaseRemoteConfig', '~> 4.4.4'
108+
ss.dependency 'FirebaseRemoteConfig', '~> 4.4.5'
109109
end
110110

111111
s.subspec 'Storage' do |ss|
112112
ss.dependency 'Firebase/CoreOnly'
113-
ss.dependency 'FirebaseStorage', '~> 3.4.1'
113+
ss.dependency 'FirebaseStorage', '~> 3.4.2'
114114
end
115115

116116
s.subspec 'MLCommon' do |ss|

FirebaseAuth.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 = 'FirebaseAuth'
3-
s.version = '6.3.1'
3+
s.version = '6.4.0'
44
s.summary = 'The official iOS client for Firebase Authentication (plus community support for macOS and tvOS)'
55

66
s.description = <<-DESC

FirebaseCore.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 = 'FirebaseCore'
3-
s.version = '6.3.3'
3+
s.version = '6.4.0'
44
s.summary = 'Firebase Core for iOS (plus community support for macOS and tvOS)'
55

66
s.description = <<-DESC
@@ -39,7 +39,7 @@ Firebase Core includes FIRApp and FIROptions which provide central configuration
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.12.0',
42+
'FIRCore_VERSION=' + s.version.to_s + ' Firebase_VERSION=6.13.0',
4343
'OTHER_CFLAGS' => '-fno-autolink'
4444
}
4545
s.test_spec 'unit' do |unit_tests|

FirebaseFirestore.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 = 'FirebaseFirestore'
3-
s.version = '1.7.0'
3+
s.version = '1.8.0'
44
s.summary = 'Google Cloud Firestore for iOS'
55

66
s.description = <<-DESC

FirebaseMessaging.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 = 'FirebaseMessaging'
3-
s.version = '4.1.8'
3+
s.version = '4.1.9'
44
s.summary = 'Firebase Messaging for iOS'
55

66
s.description = <<-DESC

FirebaseRemoteConfig.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 = 'FirebaseRemoteConfig'
3-
s.version = '4.4.4'
3+
s.version = '4.4.5'
44
s.summary = 'Firebase RemoteConfig for iOS'
55

66
s.description = <<-DESC

FirebaseStorage.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 = 'FirebaseStorage'
3-
s.version = '3.4.1'
3+
s.version = '3.4.2'
44
s.summary = 'Firebase Storage for iOS (plus community support for macOS and tvOS)'
55

66
s.description = <<-DESC

Firestore/Example/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ if is_platform(:ios)
118118
# The next line is the forcing function for the Firebase pod. The Firebase
119119
# version's subspecs should depend on the component versions in their
120120
# corresponding podspecs.
121-
pod 'Firebase/CoreOnly', '6.12.0'
121+
pod 'Firebase/CoreOnly', '6.13.0'
122122

123123
configure_local_pods()
124124

GoogleDataTransport.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 = 'GoogleDataTransport'
3-
s.version = '3.0.1'
3+
s.version = '3.1.0'
44
s.summary = 'Google iOS SDK data transport.'
55

66
s.description = <<-DESC

0 commit comments

Comments
 (0)