Skip to content

Commit ce724ab

Browse files
committed
Bump the min versions to match what Firebase will do for version 12.
https://github.com/firebase/firebase-ios-sdk/blob/main/FirebaseCore/CHANGELOG.md#unreleased
1 parent 472a15b commit ce724ab

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

GoogleAPIClientForREST.podspec

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,17 @@ Pod::Spec.new do |s|
1212
framework for accessing JSON REST APIs. This is the recommended library
1313
for accessing JSON-based Google APIs for iOS, OS X, and tvOS applications.
1414
15-
This version can be used with iOS ≥ 10.0, OS X ≥ 10.12, tvOS ≥ 10.0, watchOS ≥ 6.0.
15+
This version can be used with iOS ≥ 15.0, OS X ≥ 10.15, tvOS ≥ 15.0, visionOS ≥ 1.0,
16+
watchOS ≥ 7.0.
1617
DESC
1718

1819
# Ensure developers won't hit CocoaPods/CocoaPods#11402 with the resource
1920
# bundle for the privacy manifest.
2021
s.cocoapods_version = '>= 1.12.0'
2122

22-
ios_deployment_target = '12.0'
23+
ios_deployment_target = '15.0'
2324
osx_deployment_target = '10.15'
24-
tvos_deployment_target = '13.0'
25+
tvos_deployment_target = '15.0'
2526
visionos_deployment_target = '1.0'
2627
watchos_deployment_target = '7.0'
2728

@@ -31,7 +32,7 @@ Pod::Spec.new do |s|
3132
s.visionos.deployment_target = visionos_deployment_target
3233
s.watchos.deployment_target = watchos_deployment_target
3334

34-
s.dependency 'GTMSessionFetcher/Full', '>= 1.6.1', '< 5.0'
35+
s.dependency 'GTMSessionFetcher/Full', '>= 1.6.1', '< 6.0'
3536

3637
s.prefix_header_file = false
3738

Package.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
// swift-tools-version:5.3
1+
// swift-tools-version:5.8
22
// The swift-tools-version declares the minimum version of Swift required to build this package.
33
import PackageDescription
44

55
let package = Package(
66
name: "GoogleAPIClientForREST",
77
platforms: [
8-
.iOS(.v12),
8+
.iOS(.v15),
99
.macOS(.v10_15),
10-
.tvOS(.v13),
10+
.tvOS(.v15),
1111
.watchOS(.v7)
1212
],
1313
products: [
@@ -1224,7 +1224,7 @@ let package = Package(
12241224
// End of products.
12251225
],
12261226
dependencies: [
1227-
.package(url: "https://github.com/google/gtm-session-fetcher.git", "1.6.1" ..< "5.0.0"),
1227+
.package(url: "https://github.com/google/gtm-session-fetcher.git", "1.6.1" ..< "6.0.0"),
12281228
],
12291229
targets: [
12301230
.target(

0 commit comments

Comments
 (0)