Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
150 changes: 74 additions & 76 deletions Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.2
// swift-tools-version:5.7
import PackageDescription

let depCasePaths: PackageDescription.Target.Dependency = .product(name: "CasePaths", package: "swift-case-paths")
Expand All @@ -8,10 +8,10 @@ let depNimble: PackageDescription.Target.Dependency = .product(name: "Nimble", p
let package = Package(
name: "Mobius",
platforms: [
.iOS(.v10),
.macOS(.v10_12),
.tvOS(.v10),
.watchOS(.v3),
.iOS(.v13),
.macOS(.v10_15),
.tvOS(.v13),
.watchOS(.v6),
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nimble complained about some of these. Probably about time to bump anyway? iOS 10 is mighty old.

],
products: [
.library(name: "MobiusCore", targets: ["MobiusCore"]),
Expand All @@ -21,7 +21,7 @@ let package = Package(
],
dependencies: [
.package(url: "https://github.com/pointfreeco/swift-case-paths", .upToNextMinor(from: "0.10.1")),
.package(url: "https://github.com/Quick/Nimble", from: "10.0.0"),
.package(url: "https://github.com/Quick/Nimble", from: "11.0.0"),
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will followup w/ an upgrade to 13.x, this is a baby step

.package(url: "https://github.com/Quick/Quick", from: "7.0.0"),
],
targets: [
Expand Down
Loading