Bump macOS dependency to 11
This commit is contained in:
parent
a6b1077441
commit
5a64443221
|
@ -6,9 +6,9 @@ let package = Package(
|
||||||
name: "SwiftKit",
|
name: "SwiftKit",
|
||||||
platforms: [
|
platforms: [
|
||||||
.iOS(.v13),
|
.iOS(.v13),
|
||||||
|
.macOS(.v11),
|
||||||
.tvOS(.v13),
|
.tvOS(.v13),
|
||||||
.watchOS(.v6),
|
.watchOS(.v6)
|
||||||
.macOS(.v11)
|
|
||||||
],
|
],
|
||||||
products: [
|
products: [
|
||||||
.library(
|
.library(
|
||||||
|
|
|
@ -23,7 +23,7 @@ You can explore the various sections in the [documentation][Documentation] and t
|
||||||
|
|
||||||
## Supported Platforms
|
## Supported Platforms
|
||||||
|
|
||||||
SwiftKit supports `iOS 13`, `macOS 10.13`, `tvOS 13` and `watchOS 6`.
|
SwiftKit supports `iOS 13`, `macOS 11`, `tvOS 13` and `watchOS 6`.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -21,6 +21,10 @@ This version adjusts the library for Xcode 14 and deprecates some things.
|
||||||
* The `StoreKit` namespace has been deprecated and moved to https://github.com/danielsaidi/StoreKitPlus
|
* The `StoreKit` namespace has been deprecated and moved to https://github.com/danielsaidi/StoreKitPlus
|
||||||
* `String+Slugified` has been deprecated and moved to https://github.com/danielsaidi/TagKit
|
* `String+Slugified` has been deprecated and moved to https://github.com/danielsaidi/TagKit
|
||||||
|
|
||||||
|
### 💥 Breaking changes
|
||||||
|
|
||||||
|
* Due to the concurrency adjustments, macOS 11 is now needed.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## 1.2
|
## 1.2
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
SwiftKit adds extra functionality to the Swift framework, like extensions to native types, utilites, services etc.
|
SwiftKit adds extra functionality to the Swift framework, like extensions to native types, utilites, services etc.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
|
||||||

|

|
||||||
|
@ -14,7 +13,7 @@ SwiftKit is divided into the sections found in the Topics section below.
|
||||||
|
|
||||||
## Supported Platforms
|
## Supported Platforms
|
||||||
|
|
||||||
SwiftKit supports `iOS 13`, `macOS 10.13`, `tvOS 13` and `watchOS 6`.
|
SwiftKit supports `iOS 13`, `macOS 11`, `tvOS 13` and `watchOS 6`.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue