Skip to content

Commit 4faf6e6

Browse files
authored
Bump version to 0.2.0 (#252)
1 parent 9ddf217 commit 4faf6e6

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v4
1616
- run: |
1717
VERSION=$(echo ${{ github.ref_name }} | sed 's/^v//')
18-
echo "{WASMKIT_VERSION}={$VERSION}" >> "$GITHUB_ENV"
18+
echo "{WASMKIT_VERSION}=${VERSION}" >> "$GITHUB_ENV"
1919
- run: ./Utilities/build-release.py -o wasmkit-x86_64-apple-macos.tar.gz -s $WASMKIT_VERSION -- --triple x86_64-apple-macos
2020
- run: ./Utilities/build-release.py -o wasmkit-arm64-apple-macos.tar.gz -s $WASMKIT_VERSION -- --triple arm64-apple-macos
2121
- uses: actions/upload-artifact@v6
@@ -46,7 +46,7 @@ jobs:
4646
4747
- run: |
4848
VERSION=$(echo ${{ github.ref_name }} | sed 's/^v//')
49-
echo "{WASMKIT_VERSION}={$VERSION}" >> "$GITHUB_ENV"
49+
echo "{WASMKIT_VERSION}=${VERSION}" >> "$GITHUB_ENV"
5050
- run: ./build-exec ./Utilities/build-release.py -o wasmkit-x86_64-swift-linux-musl.tar.gz -s $WASMKIT_VERSION -- --swift-sdk x86_64-swift-linux-musl
5151
- run: ./build-exec ./Utilities/build-release.py -o wasmkit-aarch64-swift-linux-musl.tar.gz -s $WASMKIT_VERSION -- --swift-sdk aarch64-swift-linux-musl
5252
- uses: actions/upload-artifact@v6

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.1.6
31+
swift package add-dependency https://github.com/swiftwasm/WasmKit --up-to-next-minor-from 0.2.0
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.1.6")),
40+
.package(url: "https://github.com/swiftwasm/WasmKit.git", .upToNextMinor(from: "0.2.0")),
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.1.6",
8+
version: "0.2.0",
99
subcommands: [
1010
Explore.self,
1111
Run.self,

0 commit comments

Comments
 (0)