File tree 10 files changed +19
-9
lines changed 10 files changed +19
-9
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ target 'Core_Example_iOS' do
15
15
# The next line is the forcing function for the Firebase pod. The Firebase
16
16
# version's subspecs should depend on the component versions in their
17
17
# corresponding podspec's.
18
- pod 'Firebase/CoreOnly' , '5.14 .0'
18
+ pod 'Firebase/CoreOnly' , '5.15 .0'
19
19
20
20
target 'Core_Tests_iOS' do
21
21
inherit! :search_paths
Original file line number Diff line number Diff line change 1
1
# Unreleased
2
2
3
+ # 2018-12-18 -- v5.1.10 -- M40
4
+ - [ changed] Removed some internal authentication methods on FIRApp which are no longer used thanks to the interop platform.
5
+
3
6
# 2018-10-31 -- v5.1.7 -- M37
4
7
- [ fixed] Fixed static analysis warning for improper ` nil ` comparison. (#2034 )
5
8
- [ changed] Assign the default app before posting notifications. (#2024 )
Original file line number Diff line number Diff line change 43
43
NSString *const kFIRLibraryVersionID =
44
44
@" 5" // Major version (one or more digits)
45
45
@" 01" // Minor version (exactly 2 digits)
46
- @" 09 " // Build number (exactly 2 digits)
46
+ @" 10 " // Build number (exactly 2 digits)
47
47
@" 000" ; // Fixed "000"
48
48
// Plist file name.
49
49
NSString *const kServiceInfoFileName = @" GoogleService-Info" ;
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = 'FirebaseAuth'
3
- s . version = '5.1 .0'
3
+ s . version = '5.2 .0'
4
4
s . summary = 'The official iOS client for Firebase Authentication (plus community support for macOS and tvOS)'
5
5
6
6
s . description = <<-DESC
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = 'FirebaseCore'
3
- s . version = '5.1.9 '
3
+ s . version = '5.1.10 '
4
4
s . summary = 'Firebase Core for iOS (plus community support for macOS and tvOS)'
5
5
6
6
s . description = <<-DESC
@@ -32,7 +32,7 @@ Firebase Core includes FIRApp and FIROptions which provide central configuration
32
32
s . pod_target_xcconfig = {
33
33
'GCC_C_LANGUAGE_STANDARD' => 'c99' ,
34
34
'GCC_PREPROCESSOR_DEFINITIONS' =>
35
- 'FIRCore_VERSION=' + s . version . to_s + ' Firebase_VERSION=5.14 .0' ,
35
+ 'FIRCore_VERSION=' + s . version . to_s + ' Firebase_VERSION=5.15 .0' ,
36
36
'OTHER_CFLAGS' => '-fno-autolink'
37
37
}
38
38
end
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = 'FirebaseFirestore'
3
- s . version = '0.16.0 '
3
+ s . version = '0.16.1 '
4
4
s . summary = 'Google Cloud Firestore for iOS'
5
5
6
6
s . description = <<-DESC
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = 'FirebaseFunctions'
3
- s . version = '2.1.1 '
3
+ s . version = '2.1.2 '
4
4
s . summary = 'Cloud Functions for Firebase iOS SDK.'
5
5
6
6
s . description = <<-DESC
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ target 'Firestore_Example_iOS' do
10
10
# The next line is the forcing function for the Firebase pod. The Firebase
11
11
# version's subspecs should depend on the component versions in their
12
12
# corresponding podspec's.
13
- pod 'Firebase/CoreOnly' , '5.14 .0'
13
+ pod 'Firebase/CoreOnly' , '5.15 .0'
14
14
15
15
pod 'FirebaseAuth' , :path => '../../'
16
16
pod 'FirebaseAuthInterop' , :path => '../../'
Original file line number Diff line number Diff line change
1
+ {
2
+ "FirebaseAuth" :" 5.2.0" ,
3
+ "FirebaseCore" :" 5.1.10" ,
4
+ "FirebaseFirestore" :" 0.16.1" ,
5
+ "FirebaseFunctions" :" 2.1.2" ,
6
+ "FirebasePerformance" :" 2.2.2"
7
+ }
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ target 'SymbolCollisionTest' do
6
6
# use_frameworks!
7
7
8
8
# Firebase Pods
9
- pod 'Firebase' , '5.14 .0'
9
+ pod 'Firebase' , '5.15 .0'
10
10
pod 'FirebaseAnalytics'
11
11
pod 'FirebaseAuth'
12
12
pod 'FirebaseCore'
You can’t perform that action at this time.
0 commit comments