Skip to content

Commit a217007

Browse files
authored
Bump version to 0.3.0 (#360)
1 parent d709327 commit a217007

2 files changed

Lines changed: 8 additions & 7 deletions

File tree

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<img alt="WasmKit Icon" src="https://raw.github.com/wiki/akkyie/wakit/images/wakit_icon.png" width="100px">
1+
<img width="100" height="100" alt="wasmkit" src="https://github.com/user-attachments/assets/7db95250-18cb-401c-9009-4477b5d61a0d" />
22

33
# WasmKit
44

@@ -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.3.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.2.0")),
40+
.package(url: "https://github.com/swiftwasm/WasmKit.git", .upToNextMinor(from: "0.3.0")),
4141
],
4242
// ...other package configuration
4343
targets: [
@@ -91,8 +91,8 @@ Proposals are grouped by their [phase](https://github.com/WebAssembly/meetings/b
9191
| Proposal | Status | WasmKit version |
9292
|----------|--------|-----------------|
9393
| [Bulk Memory Operations](https://github.com/WebAssembly/bulk-memory-operations) | ✅ Implemented | [0.0.2] |
94-
| [Exception Handling](https://github.com/WebAssembly/exception-handling) | ✅ Implemented | `main` branch |
95-
| [Fixed-width SIMD](https://github.com/webassembly/simd) | ✅ Implemented | `main` branch |
94+
| [Exception Handling](https://github.com/WebAssembly/exception-handling) | ✅ Implemented | [0.3.0] |
95+
| [Fixed-width SIMD](https://github.com/webassembly/simd) | ✅ Implemented | [0.3.0] |
9696
| [Import/Export of Mutable Globals](https://github.com/WebAssembly/mutable-global) | ✅ Implemented | [0.0.2] |
9797
| [Memory64](https://github.com/WebAssembly/memory64) | ✅ Implemented | [0.0.2] |
9898
| [Multi-value](https://github.com/WebAssembly/multi-value) | ✅ Implemented | [0.0.2] |
@@ -111,12 +111,13 @@ Proposals are grouped by their [phase](https://github.com/WebAssembly/meetings/b
111111
[0.0.2]: https://github.com/swiftwasm/WasmKit/releases/tag/0.0.2
112112
[0.1.4]: https://github.com/swiftwasm/WasmKit/releases/tag/0.1.4
113113
[0.2.0]: https://github.com/swiftwasm/WasmKit/releases/tag/0.2.0
114+
[0.3.0]: https://github.com/swiftwasm/WasmKit/releases/tag/0.3.0
114115

115116
#### Phase 4 - Standardize the Feature (WG)
116117

117118
| Proposal | Status | WasmKit version |
118119
|----------|--------|-----------------|
119-
| [Threads and Atomics](https://github.com/webassembly/threads) | ✅ Implemented | `main` branch |
120+
| [Threads and Atomics](https://github.com/webassembly/threads) | ✅ Implemented | [0.3.0] |
120121

121122
#### Phase 1 - Feature Proposal (CG)
122123

Sources/CLI/CLI.swift

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

0 commit comments

Comments
 (0)