-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update `Mintfile` * Update hooks * Bump the Swift version to 6.0 * Update `.gitignore` * Update `README.md` * Update `ci.yml` * Fix typos
- Loading branch information
1 parent
880aeae
commit 74e065d
Showing
15 changed files
with
439 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
nicklockwood/SwiftFormat@0.47.12 | ||
realm/SwiftLint@0.47.1 | ||
nicklockwood/SwiftFormat@0.54.0 | ||
realm/SwiftLint@0.55.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// swift-tools-version: 5.10 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "Concurrency", | ||
platforms: [ | ||
.macOS(.v10_15), | ||
.iOS(.v13), | ||
.watchOS(.v6), | ||
.tvOS(.v12), | ||
], | ||
products: [ | ||
.library(name: "Concurrency", targets: ["Concurrency"]), | ||
.library(name: "TestConcurrency", targets: ["TestConcurrency"]), | ||
], | ||
dependencies: [], | ||
targets: [ | ||
.target(name: "Concurrency", dependencies: []), | ||
.target(name: "TestConcurrency", dependencies: ["Concurrency"]), | ||
.testTarget(name: "ConcurrencyTests", dependencies: ["Concurrency"]), | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// swift-tools-version: 5.5 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "Concurrency", | ||
platforms: [ | ||
.macOS(.v10_15), | ||
.iOS(.v13), | ||
.watchOS(.v6), | ||
.tvOS(.v12), | ||
], | ||
products: [ | ||
.library(name: "Concurrency", targets: ["Concurrency"]), | ||
.library(name: "TestConcurrency", targets: ["TestConcurrency"]), | ||
], | ||
dependencies: [], | ||
targets: [ | ||
.target(name: "Concurrency", dependencies: []), | ||
.target(name: "TestConcurrency", dependencies: ["Concurrency"]), | ||
.testTarget(name: "ConcurrencyTests", dependencies: ["Concurrency"]), | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// swift-tools-version: 5.6 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "Concurrency", | ||
platforms: [ | ||
.macOS(.v10_15), | ||
.iOS(.v13), | ||
.watchOS(.v6), | ||
.tvOS(.v12), | ||
], | ||
products: [ | ||
.library(name: "Concurrency", targets: ["Concurrency"]), | ||
.library(name: "TestConcurrency", targets: ["TestConcurrency"]), | ||
], | ||
dependencies: [], | ||
targets: [ | ||
.target(name: "Concurrency", dependencies: []), | ||
.target(name: "TestConcurrency", dependencies: ["Concurrency"]), | ||
.testTarget(name: "ConcurrencyTests", dependencies: ["Concurrency"]), | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// swift-tools-version: 5.7 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "Concurrency", | ||
platforms: [ | ||
.macOS(.v10_15), | ||
.iOS(.v13), | ||
.watchOS(.v6), | ||
.tvOS(.v12), | ||
], | ||
products: [ | ||
.library(name: "Concurrency", targets: ["Concurrency"]), | ||
.library(name: "TestConcurrency", targets: ["TestConcurrency"]), | ||
], | ||
dependencies: [], | ||
targets: [ | ||
.target(name: "Concurrency", dependencies: []), | ||
.target(name: "TestConcurrency", dependencies: ["Concurrency"]), | ||
.testTarget(name: "ConcurrencyTests", dependencies: ["Concurrency"]), | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// swift-tools-version: 5.8 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "Concurrency", | ||
platforms: [ | ||
.macOS(.v10_15), | ||
.iOS(.v13), | ||
.watchOS(.v6), | ||
.tvOS(.v12), | ||
], | ||
products: [ | ||
.library(name: "Concurrency", targets: ["Concurrency"]), | ||
.library(name: "TestConcurrency", targets: ["TestConcurrency"]), | ||
], | ||
dependencies: [], | ||
targets: [ | ||
.target(name: "Concurrency", dependencies: []), | ||
.target(name: "TestConcurrency", dependencies: ["Concurrency"]), | ||
.testTarget(name: "ConcurrencyTests", dependencies: ["Concurrency"]), | ||
] | ||
) |
Oops, something went wrong.