Skip to content

Commit 309e63c

Browse files
authored
Bump to v0.11.1, update CHANGELOG.md (#145)
1 parent 286f8ec commit 309e63c

File tree

6 files changed

+20
-6
lines changed

6 files changed

+20
-6
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# 0.11.1 (22 November 2021)
2+
3+
This is a bugfix release that removes a requirement for macOS Monterey in `Package.swift` for this
4+
package. `README.md` was updated to explicitly specify that if you're building an app or a library
5+
that depends on JavaScriptKit for macOS (i.e. cross-platform code that supports both WebAssembly
6+
and macOS), you need either
7+
* macOS Monterey that has the new Swift concurrency runtime available, or
8+
* any version of macOS that supports Swift concurrency back-deployment with Xcode 13.2 or later, or
9+
* add `.unsafeFlags(["-Xfrontend", "-disable-availability-checking"])` in `Package.swift` manifest.
10+
11+
**Merged pull requests:**
12+
13+
- Remove macOS Monterey requirement from `Package.swift` ([#144](https://github.com/swiftwasm/JavaScriptKit/pull/144)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
14+
115
# 0.11.0 (22 November 2021)
216

317
This release adds support for `async`/`await` and SwiftWasm 5.5. Use the new `value` async property

Example/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

IntegrationTests/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ since this OS does not need back-deployment.
137137
- [Swift 5.5 or later](https://swift.org/download/) and Ubuntu 18.04 if you'd like to use Linux.
138138
Other Linux distributions are currently not supported.
139139

140-
### For users of apps depending
140+
### For users of apps depending on JavaScriptKit
141141

142142
Any recent browser that [supports WebAssembly](https://caniuse.com/#feat=wasm) and required
143143
JavaScript features should work, which currently includes:

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "javascript-kit-swift",
3-
"version": "0.11.0",
3+
"version": "0.11.1",
44
"description": "A runtime library of JavaScriptKit which is Swift framework to interact with JavaScript through WebAssembly.",
55
"main": "Runtime/lib/index.js",
66
"files": [

0 commit comments

Comments
 (0)