Jelajahi Sumber

Version updates for 5.2.0 (#1355)

davidair 7 tahun lalu
induk
melakukan
4713ddf8df

+ 1 - 1
Example/Podfile

@@ -12,7 +12,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', '5.1.0'
+  pod 'Firebase/Core', '5.2.0'
 
   target 'Core_Tests_iOS' do
     inherit! :search_paths

+ 1 - 1
Firebase/Core/FIROptions.m

@@ -43,7 +43,7 @@ NSString *const kFIRIsSignInEnabled = @"IS_SIGNIN_ENABLED";
 NSString *const kFIRLibraryVersionID =
     @"5"     // Major version (one or more digits)
     @"00"    // Minor version (exactly 2 digits)
-    @"02"    // Build number (exactly 2 digits)
+    @"03"    // Build number (exactly 2 digits)
     @"000";  // Fixed "000"
 // Plist file name.
 NSString *const kServiceInfoFileName = @"GoogleService-Info";

+ 2 - 2
FirebaseCore.podspec

@@ -1,6 +1,6 @@
 Pod::Spec.new do |s|
   s.name             = 'FirebaseCore'
-  s.version          = '5.0.2'
+  s.version          = '5.0.3'
   s.summary          = 'Firebase Core for iOS (plus community support for macOS and tvOS)'
 
   s.description      = <<-DESC
@@ -34,6 +34,6 @@ Firebase Core includes FIRApp and FIROptions which provide central configuration
   s.dependency 'GoogleToolboxForMac/NSData+zlib', '~> 2.1'
   s.pod_target_xcconfig = {
     'OTHER_CFLAGS' => '-fno-autolink ' +
-      '-DFIRCore_VERSION=' + s.version.to_s + ' -DFirebase_VERSION=5.1.0'
+      '-DFIRCore_VERSION=' + s.version.to_s + ' -DFirebase_VERSION=5.2.0'
   }
 end

+ 1 - 1
FirebaseFirestore.podspec

@@ -1,6 +1,6 @@
 Pod::Spec.new do |s|
   s.name             = 'FirebaseFirestore'
-  s.version          = '0.12.2'
+  s.version          = '0.12.3'
   s.summary          = 'Google Cloud Firestore for iOS'
 
   s.description      = <<-DESC

+ 1 - 1
Firestore/Example/Podfile

@@ -10,7 +10,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/Core', '5.1.0'
+  pod 'Firebase/Core', '5.2.0'
 
   pod 'FirebaseAuth', :path => '../../'
   pod 'FirebaseCore', :path => '../../'

+ 2 - 2
scripts/push-pods.sh

@@ -23,7 +23,7 @@
 
 pod cache clean FirebaseCore --all
 #pod cache clean FirebaseAuth --all
-pod cache clean FirebaseDatabase --all
+#pod cache clean FirebaseDatabase --all
 pod cache clean FirebaseFirestore --all
 #pod cache clean FirebaseFunctions --all
 pod cache clean FirebaseMessaging --all
@@ -31,7 +31,7 @@ pod cache clean FirebaseMessaging --all
 
 pod repo push cpdc-internal-spec FirebaseCore.podspec
 #pod repo push cpdc-internal-spec FirebaseAuth.podspec
-pod repo push cpdc-internal-spec FirebaseDatabase.podspec
+#pod repo push cpdc-internal-spec FirebaseDatabase.podspec
 pod repo push cpdc-internal-spec FirebaseFirestore.podspec --allow-warnings
 #pod repo push cpdc-internal-spec FirebaseFunctions.podspec
 pod repo push cpdc-internal-spec FirebaseMessaging.podspec

+ 14 - 14
scripts/update-tags.sh

@@ -27,35 +27,35 @@
 
 # Delete any existing tags at origin
 
-git push --delete origin '5.1.0'
-git push --delete origin 'Core-5.0.2'
+git push --delete origin '5.2.0'
+git push --delete origin 'Core-5.0.3'
 #git push --delete origin 'Auth-5.0.0'
-git push --delete origin 'Database-5.0.1'
-git push --delete origin 'Firestore-0.12.2'
+#git push --delete origin 'Database-5.0.1'
+git push --delete origin 'Firestore-0.12.3'
 #git push --delete origin 'Functions-2.0.0'
-git push --delete origin 'Messaging-3.0.1'
+git push --delete origin 'Messaging-3.0.2'
 #git push --delete origin 'Storage-3.0.0'
 
 # Delete local tags
 
-git tag --delete '5.1.0'
-git tag --delete 'Core-5.0.2'
+git tag --delete '5.2.0'
+git tag --delete 'Core-5.0.3'
 #git tag --delete 'Auth-5.0.0'
-git tag --delete 'Database-5.0.1'
-git tag --delete 'Firestore-0.12.2'
+#git tag --delete 'Database-5.0.1'
+git tag --delete 'Firestore-0.12.3'
 #git tag --delete 'Functions-2.0.0'
-git tag --delete 'Messaging-3.0.1'
+git tag --delete 'Messaging-3.0.2'
 #git tag --delete 'Storage-3.0.0'
 
 # Add and push the tags
 
-git tag '5.1.0'
-git tag 'Core-5.0.2'
+git tag '5.2.0'
+git tag 'Core-5.0.3'
 #git tag 'Auth-5.0.0'
 git tag 'Database-5.0.1'
-git tag 'Firestore-0.12.2'
+git tag 'Firestore-0.12.3'
 #git tag 'Functions-2.0.0'
-git tag 'Messaging-3.0.1'
+git tag 'Messaging-3.0.2'
 #git tag 'Storage-3.0.0'
 
 git push origin --tags