Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
Fix platform requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzalezreal committed Oct 9, 2021
1 parent 41ba13b commit 8a03356
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ test-macos:
test-ios:
xcodebuild test \
-scheme AttributedText \
-destination platform="iOS Simulator,name=iPhone 8,OS=14.5"
-destination platform="iOS Simulator,name=iPhone 8"

test-tvos:
xcodebuild test \
-scheme AttributedText \
-destination platform="tvOS Simulator,name=Apple TV,OS=14.5"
-destination platform="tvOS Simulator,name=Apple TV"

test: test-macos test-ios test-tvos

Expand Down
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import PackageDescription
let package = Package(
name: "AttributedText",
platforms: [
.macOS(.v10_15),
.iOS(.v13),
.tvOS(.v13),
.macOS(.v11),
.iOS(.v14),
.tvOS(.v14),
],
products: [
.library(
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ AttributedText is a Swift µpackage that provides `NSAttributedString` rendering

## Supported Platforms

* macOS 10.15+
* iOS 13.0+
* tvOS 13.0+
* macOS 11.0+
* iOS 14.0+
* tvOS 14.0+

## Usage
```swift
Expand Down

0 comments on commit 8a03356

Please sign in to comment.