Skip to content
This repository was archived by the owner on May 31, 2024. It is now read-only.

Commit 19b2f4c

Browse files
committed
Bug fixes in CAPageView.podspec.
1 parent d2b740c commit 19b2f4c

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

CAPageView.podspec

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |spec|
22

33
spec.name = "CAPageView"
4-
spec.version = "1.1.0"
4+
spec.version = "1.1.1"
55
spec.summary = "This package contains a PageView purely written in SwiftUI."
66
spec.homepage = "https://github.com/Connapptivity/SwiftUI-PageView"
77

@@ -10,9 +10,6 @@ Pod::Spec.new do |spec|
1010
spec.author = { "Marlo Kessler" => "[email protected]" }
1111

1212
spec.ios.deployment_target = "13.0"
13-
spec.osx.deployment_target = "10.15"
14-
spec.watchos.deployment_target = "6.0"
15-
spec.tvos.deployment_target = "13.0"
1613

1714
spec.source = { :git => "https://github.com/Connapptivity/SwiftUI-PageView.git", :tag => "#{spec.version}" }
1815

Package.swift

+3-4
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,15 @@ import PackageDescription
66
let package = Package(
77
name: "PageView",
88
platforms: [
9-
.iOS(.v13),
10-
.tvOS(.v13),
11-
.watchOS(.v6),
12-
.macOS(.v10_15)
9+
.iOS(.v13)
1310
],
11+
1412
products: [
1513
.library(
1614
name: "PageView",
1715
targets: ["PageView"]),
1816
],
17+
1918
targets: [
2019
.target(
2120
name: "PageView",

0 commit comments

Comments
 (0)