aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2018-04-10 17:45:20 -0700
committerGravatar GitHub <noreply@github.com>2018-04-10 17:45:20 -0700
commit55eed807df70402d81227056d0f3934c07215295 (patch)
tree63254c0c6beedd209b847adce227d2d9241ce2b8
parent135e2acc4502460d083564fc18a4b52ed3297fdb (diff)
parentfb14ee35fa0c666b15574cdedb4efdefe8cf9fca (diff)
Merge pull request #1067 from firebase/release-4.12.0
Release 4.12.0
-rw-r--r--Example/Podfile2
-rw-r--r--Firebase/Core/FIROptions.m2
-rw-r--r--Firebase/Messaging/Public/FIRMessaging.h4
-rw-r--r--FirebaseAuth.podspec2
-rw-r--r--FirebaseCore.podspec2
-rw-r--r--FirebaseFirestore.podspec2
-rw-r--r--FirebaseMessaging.podspec2
-rw-r--r--FirebaseStorage.podspec2
-rw-r--r--Firestore/Example/Podfile2
9 files changed, 10 insertions, 10 deletions
diff --git a/Example/Podfile b/Example/Podfile
index 682f2a4..56f896b 100644
--- a/Example/Podfile
+++ b/Example/Podfile
@@ -8,7 +8,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/Core', '4.11.0'
+ pod 'Firebase/Core', '4.12.0'
target 'Core_Tests_iOS' do
inherit! :search_paths
diff --git a/Firebase/Core/FIROptions.m b/Firebase/Core/FIROptions.m
index 56a56ff..5546297 100644
--- a/Firebase/Core/FIROptions.m
+++ b/Firebase/Core/FIROptions.m
@@ -43,7 +43,7 @@ NSString *const kFIRIsSignInEnabled = @"IS_SIGNIN_ENABLED";
NSString *const kFIRLibraryVersionID =
@"4" // Major version (one or more digits)
@"00" // Minor version (exactly 2 digits)
- @"18" // Build number (exactly 2 digits)
+ @"19" // Build number (exactly 2 digits)
@"000"; // Fixed "000"
// Plist file name.
NSString *const kServiceInfoFileName = @"GoogleService-Info";
diff --git a/Firebase/Messaging/Public/FIRMessaging.h b/Firebase/Messaging/Public/FIRMessaging.h
index f545147..e5c27ea 100644
--- a/Firebase/Messaging/Public/FIRMessaging.h
+++ b/Firebase/Messaging/Public/FIRMessaging.h
@@ -467,7 +467,7 @@ NS_SWIFT_NAME(Messaging)
* In case of success, nil error is returned. Otherwise, an
* appropriate error object is returned.
*/
-- (void)subscribeToTopic:(NSString *)topic
+- (void)subscribeToTopic:(nonnull NSString *)topic
completion:(nullable FIRMessagingTopicOperationCompletion)completion;
/**
@@ -485,7 +485,7 @@ NS_SWIFT_NAME(Messaging)
* In case of success, nil error is returned. Otherwise, an
* appropriate error object is returned.
*/
-- (void)unsubscribeFromTopic:(NSString *)topic
+- (void)unsubscribeFromTopic:(nonnull NSString *)topic
completion:(nullable FIRMessagingTopicOperationCompletion)completion;
#pragma mark - Upstream
diff --git a/FirebaseAuth.podspec b/FirebaseAuth.podspec
index 549c720..c575d29 100644
--- a/FirebaseAuth.podspec
+++ b/FirebaseAuth.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FirebaseAuth'
- s.version = '4.5.0'
+ s.version = '4.6.0'
s.summary = 'The official iOS client for Firebase Authentication'
s.description = <<-DESC
diff --git a/FirebaseCore.podspec b/FirebaseCore.podspec
index 583dc39..4fff2e2 100644
--- a/FirebaseCore.podspec
+++ b/FirebaseCore.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FirebaseCore'
- s.version = '4.0.18'
+ s.version = '4.0.19'
s.summary = 'Firebase Core for iOS'
s.description = <<-DESC
diff --git a/FirebaseFirestore.podspec b/FirebaseFirestore.podspec
index 9af8ec9..fb94328 100644
--- a/FirebaseFirestore.podspec
+++ b/FirebaseFirestore.podspec
@@ -8,7 +8,7 @@
Pod::Spec.new do |s|
s.name = 'FirebaseFirestore'
- s.version = '0.10.4'
+ s.version = '0.11.0'
s.summary = 'Google Cloud Firestore for iOS'
s.description = <<-DESC
diff --git a/FirebaseMessaging.podspec b/FirebaseMessaging.podspec
index 5ef4fab..5484013 100644
--- a/FirebaseMessaging.podspec
+++ b/FirebaseMessaging.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FirebaseMessaging'
- s.version = '2.1.1'
+ s.version = '2.2.0'
s.summary = 'Firebase Messaging for iOS'
s.description = <<-DESC
diff --git a/FirebaseStorage.podspec b/FirebaseStorage.podspec
index 8f0b9d0..f3b8f2a 100644
--- a/FirebaseStorage.podspec
+++ b/FirebaseStorage.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FirebaseStorage'
- s.version = '2.1.3'
+ s.version = '2.2.0'
s.summary = 'Firebase Storage for iOS'
s.description = <<-DESC
diff --git a/Firestore/Example/Podfile b/Firestore/Example/Podfile
index f7527d2..a4cf214 100644
--- a/Firestore/Example/Podfile
+++ b/Firestore/Example/Podfile
@@ -1,7 +1,7 @@
# 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/Core', '4.11.0'
+pod 'Firebase/Core', '4.12.0'
use_frameworks!
platform :ios, '8.0'