Skip to content

Commit ab4a2f2

Browse files
authored
Update to v7.2.0 (#430)
1 parent aab6d2e commit ab4a2f2

File tree

4 files changed

+8
-11
lines changed

4 files changed

+8
-11
lines changed

.github/workflows/unit_tests.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,9 @@ jobs:
2020
"",
2121
"--use-static-frameworks"
2222
]
23-
# See #400 (https://github.com/google/GoogleSignIn-iOS/issues/400)
24-
# include:
25-
# - podspec: GoogleSignInSwiftSupport.podspec
26-
# includePodspecFlag: "--include-podspecs='GoogleSignIn.podspec'"
23+
include:
24+
- podspec: GoogleSignInSwiftSupport.podspec
25+
includePodspecFlag: "--include-podspecs='GoogleSignIn.podspec'"
2726
steps:
2827
- uses: actions/checkout@v3
2928
- name: Update Bundler
@@ -34,9 +33,7 @@ jobs:
3433
# See #400 (https://github.com/google/GoogleSignIn-iOS/issues/400)
3534
run: |
3635
pod lib lint ${{ matrix.podspec }} --verbose \
37-
--sources=https://cdn.cocoapods.org/ \
38-
${{ matrix.flag }}
39-
36+
${{ matrix.includePodspecFlag }} ${{ matrix.flag }}
4037
spm-build-test:
4138
runs-on: ${{ matrix.os }}
4239
strategy:

GoogleSignIn.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'GoogleSignIn'
3-
s.version = '7.1.0'
3+
s.version = '7.2.0'
44
s.summary = 'Enables iOS apps to sign in with Google.'
55
s.description = <<-DESC
66
The Google Sign-In SDK allows users to sign in with their Google account from third-party apps.

GoogleSignInSwiftSupport.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'GoogleSignInSwiftSupport'
3-
s.version = '7.1.0'
3+
s.version = '7.2.0'
44
s.swift_version = '5.0'
55
s.summary = 'Adds Swift-focused support for Google Sign-In.'
66
s.description = 'Additional Swift support for the Google Sign-In SDK.'
@@ -24,7 +24,7 @@ Pod::Spec.new do |s|
2424
'CoreGraphics',
2525
'SwiftUI',
2626
]
27-
s.dependency 'GoogleSignIn', '~> 7.1'
27+
s.dependency 'GoogleSignIn', '~> 7.2'
2828
s.resource_bundles = {
2929
'GoogleSignInSwiftSupport_Privacy' => 'GoogleSignInSwift/Sources/Resources/PrivacyInfo.xcprivacy'
3030
}

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
import PackageDescription
1919

20-
let googleSignInVersion = "7.1.0"
20+
let googleSignInVersion = "7.2.0"
2121

2222
let package = Package(
2323
name: "GoogleSignIn",

0 commit comments

Comments
 (0)