Skip to content

Commit 5c38908

Browse files
authored
Bump version from 0.2.1 to 0.2.2 (#342)
1 parent 9f73b93 commit 5c38908

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,13 +310,13 @@ jobs:
310310
build-wasi:
311311
runs-on: ubuntu-24.04
312312
container:
313-
image: swift:6.2-noble
313+
image: swift:6.3-noble
314314
steps:
315315
- uses: actions/checkout@v4
316316
- name: Install jq
317317
run: apt-get update && apt-get install -y jq
318318
- name: Install Swift SDK
319-
run: swift sdk install https://download.swift.org/swift-6.2.3-release/wasm-sdk/swift-6.2.3-RELEASE/swift-6.2.3-RELEASE_wasm.artifactbundle.tar.gz --checksum 394040ecd5260e68bb02f6c20aeede733b9b90702c2204e178f3e42413edad2a
319+
run: swift sdk install https://download.swift.org/swift-6.3.1-release/wasm-sdk/swift-6.3.1-RELEASE/swift-6.3.1-RELEASE_wasm.artifactbundle.tar.gz --checksum bd47baa20771f366d8beed7970afaa30742b2210097afd15f85427226d8f4cf2
320320
- name: Build with the Swift SDK
321321
run: swift build --swift-sdk "$(swiftc -print-target-info | jq -r '.swiftCompilerTag')_wasm" --product wasmkit-cli
322322

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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.1
31+
swift package add-dependency https://github.com/swiftwasm/WasmKit --up-to-next-minor-from 0.2.2
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.1")),
40+
.package(url: "https://github.com/swiftwasm/WasmKit.git", .upToNextMinor(from: "0.2.2")),
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.1",
8+
version: "0.2.2",
99
subcommands: [
1010
Explore.self,
1111
Run.self,

0 commit comments

Comments
 (0)