Bump version to 0.10.1, update `CHANGELOG.md`
This commit is contained in:
parent
337b80a4c4
commit
5b7e7058e8
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,3 +1,13 @@
|
|||
# 0.10.1 (20 May 2022)
|
||||
|
||||
This is a small bugfix release, which updates JavaScriptKit dependency to 0.15 and required version of `carton` to 0.15.
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Update JSKit dependency ([#482](https://github.com/TokamakUI/Tokamak/pull/482)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
|
||||
- Explicitly mention `carton` version in "Requirements" ([#481](https://github.com/TokamakUI/Tokamak/pull/481)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
|
||||
- Use stable `v5.6` version of `swiftwasm-action` ([#477](https://github.com/TokamakUI/Tokamak/pull/477)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
|
||||
|
||||
# 0.10.0 (9 April 2022)
|
||||
|
||||
This release adds support for SwiftWasm 5.6. It also updates JavaScriptKit and OpenCombineJS dependencies.
|
||||
|
|
|
@ -59,7 +59,7 @@ let package = Package(
|
|||
),
|
||||
.package(
|
||||
url: "https://github.com/google/swift-benchmark",
|
||||
from: "0.1.0"
|
||||
from: "0.1.2"
|
||||
),
|
||||
.package(
|
||||
url: "https://github.com/pointfreeco/swift-snapshot-testing.git",
|
||||
|
|
|
@ -143,8 +143,8 @@ app.
|
|||
### For app developers
|
||||
|
||||
- macOS 11 and Xcode 13.2 or later when using VS Code. macOS 12 and Xcode 13.3 or later are recommended if
|
||||
you'd like to use Xcode for auto-completion, or when developing multi-platform apps that target WebAssembly
|
||||
and macOS at the same time.
|
||||
you'd like to use Xcode for auto-completion, or when developing multi-platform apps that target WebAssembly
|
||||
and macOS at the same time.
|
||||
- [Swift 5.6 or later](https://swift.org/download/) and Ubuntu 18.04/20.04 if you'd like to use Linux.
|
||||
Other Linux distributions are currently not supported.
|
||||
- [`carton` 0.14.x](https://carton.dev) (carton is our build tool, see the ["Getting started" section](#getting-started) for installation steps)
|
||||
|
@ -184,7 +184,7 @@ app by following these steps:
|
|||
brew install swiftwasm/tap/carton
|
||||
```
|
||||
|
||||
If you had `carton` installed before this, make sure you have version 0.14.0 or greater:
|
||||
If you had `carton` installed before this, make sure you have version 0.15.0 or greater:
|
||||
|
||||
```
|
||||
carton --version
|
||||
|
|
Loading…
Reference in New Issue