Skip to content

Commit cc1c14f

Browse files
committed
Bump version to 0.2.1
1 parent 50ae36a commit cc1c14f

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# WasmKit
44

5-
**WasmKit** is a standalone and embeddable [WebAssembly](https://webassembly.org) runtime (virtual machine) implementation and related tooling written in Swift. Starting with Swift 6.2, WasmKit CLI executable is included in [Swift toolchains distributed at swift.org](https://swift.org/install) for Linux and macOS.
5+
**WasmKit** is a standalone and embeddable [WebAssembly](https://webassembly.org) runtime (virtual machine) implementation and related tooling written in Swift. Starting with Swift 6.2, WasmKit CLI executable is included in [Swift toolchains distributed at swift.org](https://swift.org/install) for Linux and macOS.
66

77
## Usage
88

@@ -28,7 +28,7 @@ To use WasmKit in your package, add it as a [Swift Package Manager](https://www.
2828
Run the following commands in the same directory as your `Package.swift` manifest to add the dependency:
2929

3030
```
31-
swift package add-dependency https://github.com/swiftwasm/WasmKit --up-to-next-minor-from 0.2.0
31+
swift package add-dependency https://github.com/swiftwasm/WasmKit --up-to-next-minor-from 0.2.1
3232
swift package add-target-dependency WasmKit <your-package-target-name> --package WasmKit
3333
```
3434

@@ -37,7 +37,7 @@ You can also add the following snippet manually instead to your `Package.swift`
3737
```swift
3838
dependencies: [
3939
// ...other dependencies
40-
.package(url: "https://github.com/swiftwasm/WasmKit.git", .upToNextMinor(from: "0.2.0")),
40+
.package(url: "https://github.com/swiftwasm/WasmKit.git", .upToNextMinor(from: "0.2.1")),
4141
],
4242
// ...other package configuration
4343
targets: [

Sources/CLI/CLI.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ struct CLI: AsyncParsableCommand {
55
static let configuration = CommandConfiguration(
66
commandName: "wasmkit",
77
abstract: "WasmKit WebAssembly Runtime",
8-
version: "0.2.0",
8+
version: "0.2.1",
99
subcommands: [
1010
Explore.self,
1111
Run.self,

0 commit comments

Comments
 (0)