Selaa lähdekoodia

Update to v7.2.0 (#430)

mdmathias 1 vuosi sitten
vanhempi
sitoutus
ab4a2f21e2
4 muutettua tiedostoa jossa 8 lisäystä ja 11 poistoa
  1. 4 7
      .github/workflows/unit_tests.yml
  2. 1 1
      GoogleSignIn.podspec
  3. 2 2
      GoogleSignInSwiftSupport.podspec
  4. 1 1
      Package.swift

+ 4 - 7
.github/workflows/unit_tests.yml

@@ -20,10 +20,9 @@ jobs:
           "",
           "--use-static-frameworks"
         ]
-        # See #400 (https://github.com/google/GoogleSignIn-iOS/issues/400)
-        # include:
-        #  - podspec: GoogleSignInSwiftSupport.podspec
-        #    includePodspecFlag: "--include-podspecs='GoogleSignIn.podspec'"
+        include:
+          - podspec: GoogleSignInSwiftSupport.podspec
+            includePodspecFlag: "--include-podspecs='GoogleSignIn.podspec'"
     steps:
     - uses: actions/checkout@v3
     - name: Update Bundler
@@ -34,9 +33,7 @@ jobs:
       # See #400 (https://github.com/google/GoogleSignIn-iOS/issues/400)
       run: |
         pod lib lint ${{ matrix.podspec }} --verbose \
-           --sources=https://cdn.cocoapods.org/ \
-           ${{ matrix.flag }}
-
+          ${{ matrix.includePodspecFlag }} ${{ matrix.flag }}
   spm-build-test:
     runs-on: ${{ matrix.os }}
     strategy:

+ 1 - 1
GoogleSignIn.podspec

@@ -1,6 +1,6 @@
 Pod::Spec.new do |s|
   s.name             = 'GoogleSignIn'
-  s.version          = '7.1.0'
+  s.version          = '7.2.0'
   s.summary          = 'Enables iOS apps to sign in with Google.'
   s.description      = <<-DESC
 The Google Sign-In SDK allows users to sign in with their Google account from third-party apps.

+ 2 - 2
GoogleSignInSwiftSupport.podspec

@@ -1,6 +1,6 @@
 Pod::Spec.new do |s|
   s.name = 'GoogleSignInSwiftSupport'
-  s.version = '7.1.0'
+  s.version = '7.2.0'
   s.swift_version = '5.0'
   s.summary = 'Adds Swift-focused support for Google Sign-In.'
   s.description = 'Additional Swift support for the Google Sign-In SDK.'
@@ -24,7 +24,7 @@ Pod::Spec.new do |s|
     'CoreGraphics',
     'SwiftUI',
   ]
-  s.dependency 'GoogleSignIn', '~> 7.1'
+  s.dependency 'GoogleSignIn', '~> 7.2'
   s.resource_bundles = {
     'GoogleSignInSwiftSupport_Privacy' => 'GoogleSignInSwift/Sources/Resources/PrivacyInfo.xcprivacy'
   }

+ 1 - 1
Package.swift

@@ -17,7 +17,7 @@
 
 import PackageDescription
 
-let googleSignInVersion = "7.1.0"
+let googleSignInVersion = "7.2.0"
 
 let package = Package(
   name: "GoogleSignIn",