0.11.1
This is a bugfix release that removes a requirement for macOS Monterey in Package.swift
for this package. README.md
was updated to explicitly specify that if you're building an app or a library that depends on JavaScriptKit for macOS (i.e. cross-platform code that supports both WebAssembly and macOS), you need either
- macOS Monterey that has the new Swift concurrency runtime available, or
- any version of macOS that supports Swift concurrency back-deployment with Xcode 13.2 or later, or
- add
.unsafeFlags(["-Xfrontend", "-disable-availability-checking"])
inPackage.swift
manifest.
Merged pull requests:
- Remove macOS Monterey requirement from
Package.swift
(#144) via @MaxDesiatov