Skip to content

Commit 4209aea

Browse files
authored
Merging the 5.17.0 release into master (#2416)
* Update versions for Release 5.17.0 * Fix the tag in the FIAM podspec. * Update dependencies for FIAM. * Updated the FirebaseCore version. * Fix FIROptions version. * Temporarily remove FIAM version deps for pod linting. * Create umbrella header for FIAM (#2392) This causes an issue when building the zip file - similar to #1857 * Remove FIAM from 5.17.0 release.
1 parent a736773 commit 4209aea

File tree

11 files changed

+19
-11
lines changed

11 files changed

+19
-11
lines changed

Example/Podfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ target 'Core_Example_iOS' do
1919
# The next line is the forcing function for the Firebase pod. The Firebase
2020
# version's subspecs should depend on the component versions in their
2121
# corresponding podspec's.
22-
pod 'Firebase/CoreOnly', '5.16.0'
22+
pod 'Firebase/CoreOnly', '5.17.0'
2323

2424
target 'Core_Tests_iOS' do
2525
inherit! :search_paths

Firebase/Core/FIROptions.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
// Library version ID.
4343
NSString *const kFIRLibraryVersionID = @"5" // Major version (one or more digits)
44-
@"02" // Minor version (exactly 2 digits)
44+
@"03" // Minor version (exactly 2 digits)
4545
@"00" // Build number (exactly 2 digits)
4646
@"000"; // Fixed "000"
4747
// Plist file name.

FirebaseAuth.podspec

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

66
s.description = <<-DESC

FirebaseCore.podspec

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

66
s.description = <<-DESC
@@ -32,7 +32,7 @@ Firebase Core includes FIRApp and FIROptions which provide central configuration
3232
s.pod_target_xcconfig = {
3333
'GCC_C_LANGUAGE_STANDARD' => 'c99',
3434
'GCC_PREPROCESSOR_DEFINITIONS' =>
35-
'FIRCore_VERSION=' + s.version.to_s + ' Firebase_VERSION=5.16.0',
35+
'FIRCore_VERSION=' + s.version.to_s + ' Firebase_VERSION=5.17.0',
3636
'OTHER_CFLAGS' => '-fno-autolink'
3737
}
3838
end

FirebaseFirestore.podspec

+1-1
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.0.0'
3+
s.version = '1.0.1'
44
s.summary = 'Google Cloud Firestore for iOS'
55

66
s.description = <<-DESC

FirebaseFunctions.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseFunctions'
3-
s.version = '2.2.0'
3+
s.version = '2.2.1'
44
s.summary = 'Cloud Functions for Firebase iOS SDK.'
55

66
s.description = <<-DESC

FirebaseInAppMessaging.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ See more product details at https://firebase.google.com/products/in-app-messagin
1414

1515
s.source = {
1616
:git => 'https://github.com/firebase/firebase-ios-sdk.git',
17-
:tag => s.version.to_s
17+
:tag => 'InAppMessaging-' + s.version.to_s
1818
}
1919
s.social_media_url = 'https://twitter.com/Firebase'
2020
s.ios.deployment_target = '8.0'

FirebaseMessaging.podspec

+1-1
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 = '3.3.0'
3+
s.version = '3.3.1'
44
s.summary = 'Firebase Messaging for iOS'
55

66
s.description = <<-DESC

Firestore/Example/Podfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ target 'Firestore_Example_iOS' do
1414
# The next line is the forcing function for the Firebase pod. The Firebase
1515
# version's subspecs should depend on the component versions in their
1616
# corresponding podspec's.
17-
pod 'Firebase/CoreOnly', '5.16.0'
17+
pod 'Firebase/CoreOnly', '5.17.0'
1818

1919
pod 'FirebaseAuth', :path => '../../'
2020
pod 'FirebaseAuthInterop', :path => '../../'

Releases/Manifests/5.17.0.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"FirebaseAnalyticsInterop":"1.2.0",
3+
"FirebaseAuth":"5.3.1",
4+
"FirebaseCore":"5.3.0",
5+
"FirebaseFirestore":"1.0.1",
6+
"FirebaseFunctions":"2.2.1",
7+
"FirebaseMessaging":"3.3.1"
8+
}

SymbolCollisionTest/Podfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ target 'SymbolCollisionTest' do
66
# use_frameworks!
77

88
# Firebase Pods
9-
pod 'Firebase', '5.16.0'
9+
pod 'Firebase', '5.17.0'
1010
pod 'FirebaseAnalytics'
1111
pod 'FirebaseAuth'
1212
pod 'FirebaseCore'

0 commit comments

Comments
 (0)