Skip to content

Commit

Permalink
[Doc] Update CHANGELOG (#63)
Browse files Browse the repository at this point in the history
* chore(rust-sys): update versioning table

Signed-off-by: Xin Liu <[email protected]>

* version(rust-sdk): bump to `0.12.0`

Signed-off-by: Xin Liu <[email protected]>

* doc(rust-sdk): update versioning table

Signed-off-by: Xin Liu <[email protected]>

* doc: update `CHANGELOG`

Signed-off-by: Xin Liu <[email protected]>

---------

Signed-off-by: Xin Liu <[email protected]>
  • Loading branch information
apepkuss authored Sep 11, 2023
1 parent 2681d5d commit cfeaf6c
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 1 deletion.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@

All notable changes to this project will be documented in this file.

## [0.12.0] - 2023-09-10

### ⛰️ Features

- New `timeout` APIs ([#61](https://github.com/WasmEdge/wasmedge-rust-sdk/pull/61))
- Add `Vm::run_func_with_timeout` and `Vm::run_func_async_with_timeout`. These APIs are used to run a host function with a timeout
- Add `Executor::run_func_with_timeout` and `Executor::run_func_async_with_timeout`. These APIs are used to run a host function with a timeout
- Add `Func::run_with_timeout` and `Func::run_async_with_timeout`. These APIs are used to run a host function with a timeout
- New API `Store::register_plugin_module`. This API is used to register a `PluginInstance`` into a store instance ([#53](https://github.com/WasmEdge/wasmedge-rust-sdk/pull/53))
- New type alias `PluginInstance` ([#53](https://github.com/WasmEdge/wasmedge-rust-sdk/pull/53))

### 🚜 Refactor

- [BREAKING] Merge `async` mod into `wasi` mod ([#55](https://github.com/WasmEdge/wasmedge-rust-sdk/pull/55))
- [BREAKING] Update the return type of `PluginManager::find` from `Option<Plugin>` to `WasmEdgeResult<Plugin>` ([#53](https://github.com/WasmEdge/wasmedge-rust-sdk/pull/53))
- [BREAKING] Update the return type of `Plugin::mod_instance` from `Option<Instance>` to `WasmEdgeResult<PluginInstance>` ([#53](https://github.com/WasmEdge/wasmedge-rust-sdk/pull/53))

### 📚 Documentation

- Update WasmEdge RustSDK API Document ([#55](https://github.com/WasmEdge/wasmedge-rust-sdk/pull/55))

## [0.11.2] - 2023-08-07

### ⛰️ Features
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "Apache-2.0"
name = "wasmedge-sdk"
readme = "README.md"
repository = "https://github.com/WasmEdge/wasmedge-rust-sdk"
version = "0.12.0-dev"
version = "0.12.0"

[dependencies]
anyhow = "1.0"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ This crate depends on the WasmEdge C API. In linux/macOS the crate can download

| wasmedge-sdk | WasmEdge lib | wasmedge-sys | wasmedge-types| wasmedge-macro| async-wasi|
| :-----------: | :-----------: | :-----------: | :-----------: | :-----------: | :-------: |
| 0.12.0 | 0.13.4 | 0.17.0 | 0.4.4 | 0.6.1 | 0.1.0 |
| 0.11.2 | 0.13.3 | 0.16.2 | 0.4.3 | 0.6.1 | 0.1.0 |
| 0.11.0 | 0.13.3 | 0.16.0 | 0.4.3 | 0.6.0 | 0.0.3 |
| 0.10.1 | 0.13.3 | 0.15.1 | 0.4.2 | 0.5.0 | 0.0.2 |
Expand Down
1 change: 1 addition & 0 deletions crates/wasmedge-sys/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
//!
//! | wasmedge-sdk | WasmEdge lib | wasmedge-sys | wasmedge-types| wasmedge-macro| async-wasi|
//! | :-----------: | :-----------: | :-----------: | :-----------: | :-----------: | :-------: |
//! | 0.12.0 | 0.13.4 | 0.17.0 | 0.4.4 | 0.6.1 | 0.1.0 |
//! | 0.11.2 | 0.13.3 | 0.16.2 | 0.4.3 | 0.6.1 | 0.1.0 |
//! | 0.11.0 | 0.13.3 | 0.16.0 | 0.4.3 | 0.6.0 | 0.0.3 |
//! | 0.10.1 | 0.13.3 | 0.15.1 | 0.4.2 | 0.5.0 | 0.0.2 |
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
//!
//! | wasmedge-sdk | WasmEdge lib | wasmedge-sys | wasmedge-types| wasmedge-macro| async-wasi|
//! | :-----------: | :-----------: | :-----------: | :-----------: | :-----------: | :-------: |
//! | 0.12.0 | 0.13.4 | 0.17.0 | 0.4.4 | 0.6.1 | 0.1.0 |
//! | 0.11.2 | 0.13.3 | 0.16.2 | 0.4.3 | 0.6.1 | 0.1.0 |
//! | 0.11.0 | 0.13.3 | 0.16.0 | 0.4.3 | 0.6.0 | 0.0.3 |
//! | 0.10.1 | 0.13.3 | 0.15.1 | 0.4.2 | 0.5.0 | 0.0.2 |
Expand Down

0 comments on commit cfeaf6c

Please sign in to comment.