Skip to content

Commit 235d128

Browse files
gh-action-runnergh-action-runner
authored andcommitted
Squashed 'apollo-ios-pagination/' changes from 5a63f769e..778c1cef2
778c1cef2 Merge 2.0 into main branch (#780) git-subtree-dir: apollo-ios-pagination git-subtree-split: 778c1cef27589b75dcd26e364409c2423f7f0729
1 parent d0e662e commit 235d128

17 files changed

+611
-1045
lines changed

Package.resolved

Lines changed: 4 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,23 @@
1-
// swift-tools-version:5.9
2-
//
3-
// The swift-tools-version declares the minimum version of Swift required to build this package.
4-
// Swift 5.9 is available from Xcode 15.0.
1+
// swift-tools-version:6.1
52

63
import PackageDescription
74

85
let package = Package(
96
name: "ApolloPagination",
107
platforms: [
11-
.iOS(.v13),
12-
.macOS(.v10_15),
13-
.tvOS(.v13),
14-
.watchOS(.v6),
8+
.iOS(.v15),
9+
.macOS(.v12),
10+
.tvOS(.v15),
11+
.watchOS(.v8),
12+
.visionOS(.v1),
1513
],
1614
products: [
1715
.library(name: "ApolloPagination", targets: ["ApolloPagination"]),
1816
],
1917
dependencies: [
2018
.package(
2119
url: "https://github.com/apollographql/apollo-ios.git",
22-
.upToNextMajor(from: "1.2.0")
20+
exact: "2.0.0-beta-3"
2321
),
2422
.package(
2523
url: "https://github.com/apple/swift-collections",
@@ -34,7 +32,10 @@ let package = Package(
3432
.product(name: "ApolloAPI", package: "apollo-ios"),
3533
.product(name: "OrderedCollections", package: "swift-collections"),
3634
],
37-
swiftSettings: [.enableUpcomingFeature("ExistentialAny")]
35+
swiftSettings: [
36+
.swiftLanguageMode(.v6)
37+
]
3838
),
39-
]
39+
],
40+
swiftLanguageModes: [.v6, .v5]
4041
)

Sources/ApolloPagination/AsyncGraphQLQueryPager.swift

Lines changed: 0 additions & 175 deletions
This file was deleted.

0 commit comments

Comments
 (0)