Skip to content

Commit

Permalink
Update for version 0.1.1 (#3)
Browse files Browse the repository at this point in the history
Add tvOS support
  • Loading branch information
sbooth authored Nov 5, 2024
1 parent 3349831 commit 8a17b88
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ import PackageDescription
let package = Package(
name: "vorbis-binary-xcframework",
platforms: [
.macOS(.v10_15),
.iOS(.v14),
.macOS(.v11),
.iOS(.v15),
.tvOS(.v15),
],
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
Expand All @@ -22,7 +23,7 @@ let package = Package(
// Targets can depend on other targets in this package and products from dependencies.
.binaryTarget(
name: "vorbis",
url: "https://github.com/sbooth/vorbis-binary-xcframework/releases/download/0.1.0/vorbis.xcframework.zip",
checksum: "f02a5b5e0d00c54d0b8142a8db7ed96c4ec35b965a32fee1e194d19d48c1a6ff"),
url: "https://github.com/sbooth/vorbis-binary-xcframework/releases/download/0.1.1/vorbis.xcframework.zip",
checksum: "e0e2ec7a3db4b2b0fde51f694718b945daf2b635d6099910f4d2ece99a51158f"),
]
)
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Compressed [XCFramework](https://github.com/sbooth/AudioXCFrameworks/tree/main/vorbis) of [Vorbis](https://gitlab.xiph.org/xiph/vorbis) packaged as a Swift Package Manager binary target.

The XCFramework targets macOS 10.15+ and iOS 14.0+ for all supported 64-bit architectures.
The XCFramework supports macOS 11.0+, iOS 15.0+, and tvOS 15.0+ on all supported 64-bit architectures.

>[!IMPORTANT]
>This XCFramework links to the [Ogg XCFramework](https://github.com/sbooth/ogg-binary-xcframework) which must be added as a separate dependency.

0 comments on commit 8a17b88

Please sign in to comment.