Skip to content

Merging the 5.17.0 release into master #2416

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Feb 22, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Example/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ target 'Core_Example_iOS' do
# The next line is the forcing function for the Firebase pod. The Firebase
# version's subspecs should depend on the component versions in their
# corresponding podspec's.
pod 'Firebase/CoreOnly', '5.16.0'
pod 'Firebase/CoreOnly', '5.17.0'

target 'Core_Tests_iOS' do
inherit! :search_paths
Expand Down
2 changes: 1 addition & 1 deletion Firebase/Core/FIROptions.m
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

// Library version ID.
NSString *const kFIRLibraryVersionID = @"5" // Major version (one or more digits)
@"02" // Minor version (exactly 2 digits)
@"03" // Minor version (exactly 2 digits)
@"00" // Build number (exactly 2 digits)
@"000"; // Fixed "000"
// Plist file name.
Expand Down
18 changes: 18 additions & 0 deletions Firebase/InAppMessaging/Public/FirebaseInAppMessaging.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/*
* Copyright 2019 Google
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

#import "FIRInAppMessaging.h"
#import "FIRInAppMessagingRendering.h"
2 changes: 1 addition & 1 deletion FirebaseAuth.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FirebaseAuth'
s.version = '5.3.0'
s.version = '5.3.1'
s.summary = 'The official iOS client for Firebase Authentication (plus community support for macOS and tvOS)'

s.description = <<-DESC
Expand Down
4 changes: 2 additions & 2 deletions FirebaseCore.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FirebaseCore'
s.version = '5.2.0'
s.version = '5.3.0'
s.summary = 'Firebase Core for iOS (plus community support for macOS and tvOS)'

s.description = <<-DESC
Expand Down Expand Up @@ -32,7 +32,7 @@ Firebase Core includes FIRApp and FIROptions which provide central configuration
s.pod_target_xcconfig = {
'GCC_C_LANGUAGE_STANDARD' => 'c99',
'GCC_PREPROCESSOR_DEFINITIONS' =>
'FIRCore_VERSION=' + s.version.to_s + ' Firebase_VERSION=5.16.0',
'FIRCore_VERSION=' + s.version.to_s + ' Firebase_VERSION=5.17.0',
'OTHER_CFLAGS' => '-fno-autolink'
}
end
2 changes: 1 addition & 1 deletion FirebaseFirestore.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FirebaseFirestore'
s.version = '1.0.0'
s.version = '1.0.1'
s.summary = 'Google Cloud Firestore for iOS'

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion FirebaseFunctions.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FirebaseFunctions'
s.version = '2.2.0'
s.version = '2.2.1'
s.summary = 'Cloud Functions for Firebase iOS SDK.'

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion FirebaseInAppMessaging.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ See more product details at https://firebase.google.com/products/in-app-messagin

s.source = {
:git => 'https://github.com/firebase/firebase-ios-sdk.git',
:tag => s.version.to_s
:tag => 'InAppMessaging-' + s.version.to_s
}
s.social_media_url = 'https://twitter.com/Firebase'
s.ios.deployment_target = '8.0'
Expand Down
2 changes: 1 addition & 1 deletion FirebaseMessaging.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FirebaseMessaging'
s.version = '3.3.0'
s.version = '3.3.1'
s.summary = 'Firebase Messaging for iOS'

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion Firestore/Example/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ target 'Firestore_Example_iOS' do
# The next line is the forcing function for the Firebase pod. The Firebase
# version's subspecs should depend on the component versions in their
# corresponding podspec's.
pod 'Firebase/CoreOnly', '5.16.0'
pod 'Firebase/CoreOnly', '5.17.0'

pod 'FirebaseAuth', :path => '../../'
pod 'FirebaseAuthInterop', :path => '../../'
Expand Down
8 changes: 8 additions & 0 deletions Releases/Manifests/5.17.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"FirebaseAnalyticsInterop":"1.2.0",
"FirebaseAuth":"5.3.1",
"FirebaseCore":"5.3.0",
"FirebaseFirestore":"1.0.1",
"FirebaseFunctions":"2.2.1",
"FirebaseMessaging":"3.3.1"
}
2 changes: 1 addition & 1 deletion SymbolCollisionTest/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ target 'SymbolCollisionTest' do
# use_frameworks!

# Firebase Pods
pod 'Firebase', '5.16.0'
pod 'Firebase', '5.17.0'
pod 'FirebaseAnalytics'
pod 'FirebaseAuth'
pod 'FirebaseCore'
Expand Down