Fixed tvOS requirement
Related to #263 Also added requirents in the Readme (#251).
This commit is contained in:
parent
123f56c15f
commit
d8b02a2b45
|
@ -20,7 +20,7 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"package": "lux",
|
||||
"package": "Lux",
|
||||
"repositoryURL": "https://github.com/ABridoux/lux",
|
||||
"state": {
|
||||
"branch": null,
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
// swift-tools-version:5.5
|
||||
// swift-tools-version:5.4
|
||||
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
||||
|
||||
import PackageDescription
|
||||
|
||||
let package = Package(
|
||||
name: "Scout",
|
||||
platforms: [.macOS("10.13"), .iOS("10.0"), .tvOS("9.0"), .watchOS("3.0")],
|
||||
platforms: [.macOS("10.13"), .iOS("10.0"), .tvOS("10.0"), .watchOS("4.0")],
|
||||
products: [
|
||||
.library(
|
||||
name: "Scout",
|
||||
|
|
|
@ -41,6 +41,13 @@ Supported formats:
|
|||
- YAML
|
||||
- XML
|
||||
|
||||
#### Minimum requirements
|
||||
- macOS: 10.13+
|
||||
- iOS: 10.0+
|
||||
- tvOS: 10.0+
|
||||
- watchOS: 4.0+
|
||||
|
||||
|
||||
## Summary
|
||||
- [Why](#why)
|
||||
- [Features](#features)
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
import Scout
|
||||
|
||||
public indirect enum ValueType: Equatable {
|
||||
public enum ValueType: Equatable {
|
||||
case string(String)
|
||||
case real(String)
|
||||
case keyName(String)
|
||||
|
|
Loading…
Reference in New Issue