Skip to content

Commit

Permalink
[Changelog] Update the changelog for the 0.11.1 release.
Browse files Browse the repository at this point in the history
Signed-off-by: YiYing He <yiying@secondstate.io>
  • Loading branch information
q82419 committed Oct 3, 2022
1 parent 7fc93df commit a278e50
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 13 deletions.
7 changes: 4 additions & 3 deletions .CurrentChangelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### 0.11.1-rc.1 (2022-09-28)
### 0.11.1 (2022-10-03)

Features:

Expand All @@ -11,6 +11,7 @@ Features:
* Extended WasmEdge CLI.
* Allow the optimization level assignment in `wasmedgec` tool.
* Supported the `v128` value type printing in `wasmedge` tool.
* Released Ubuntu 20.04 version with statically linked LLVM.

Fixed issues:

Expand Down Expand Up @@ -39,6 +40,6 @@ Tests:

Thank all the contributors that made this release possible!

DarumaDocker, Gustavo Ye, LFsWang, MediosZ, Michael Yuan, Shen-Ta Hsieh, Tricster, Xin Liu, Yeongju Kang, YiYing He, Zhou Zhou, hydai, sonder-joker
DarumaDocker, Faidon Liambotis, Gustavo Ye, LFsWang, MediosZ, Michael Yuan, Shen-Ta Hsieh, Tricster, Xin Liu, Yeongju Kang, YiYing He, Zhou Zhou, hydai, jeeeerrrpop, sonder-joker, vincent

If you want to build from source, please use WasmEdge-0.11.1-rc.1-src.tar.gz instead of the zip or tarball provided by GitHub directly.
If you want to build from source, please use WasmEdge-0.11.1-src.tar.gz instead of the zip or tarball provided by GitHub directly.
7 changes: 4 additions & 3 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### 0.11.1-rc.1 (2022-09-28)
### 0.11.1 (2022-10-03)

Features:

Expand All @@ -11,6 +11,7 @@ Features:
* Extended WasmEdge CLI.
* Allow the optimization level assignment in `wasmedgec` tool.
* Supported the `v128` value type printing in `wasmedge` tool.
* Released Ubuntu 20.04 version with statically linked LLVM.

Fixed issues:

Expand Down Expand Up @@ -39,9 +40,9 @@ Tests:

Thank all the contributors that made this release possible!

DarumaDocker, Gustavo Ye, LFsWang, MediosZ, Michael Yuan, Shen-Ta Hsieh, Tricster, Xin Liu, Yeongju Kang, YiYing He, Zhou Zhou, hydai, sonder-joker
DarumaDocker, Faidon Liambotis, Gustavo Ye, LFsWang, MediosZ, Michael Yuan, Shen-Ta Hsieh, Tricster, Xin Liu, Yeongju Kang, YiYing He, Zhou Zhou, hydai, jeeeerrrpop, sonder-joker, vincent

If you want to build from source, please use WasmEdge-0.11.1-rc.1-src.tar.gz instead of the zip or tarball provided by GitHub directly.
If you want to build from source, please use WasmEdge-0.11.1-src.tar.gz instead of the zip or tarball provided by GitHub directly.

### 0.11.0 (2022-08-31)

Expand Down
2 changes: 1 addition & 1 deletion docs/book/en/book.toml
Original file line number Diff line number Diff line change
Expand Up @@ -162,4 +162,4 @@ copy-js = true
"/extend/build_for_android.html" = "/book/en/contribute/build_from_src/android.html"

[preprocessor.variables.variables]
wasmedge_version = "0.11.0"
wasmedge_version = "0.11.1"
2 changes: 1 addition & 1 deletion docs/book/en/src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
- [C SDK](sdk/c.md)
- [Host Function Implementation](sdk/c/hostfunction.md)
- [ExternRef Example](sdk/c/externref.md)
- [0.11.0 API references](sdk/c/ref.md)
- [0.11.1 API references](sdk/c/ref.md)
- [0.10.1 API references](sdk/c/0.10.1/ref.md)
- [Upgrade to 0.11.0](sdk/c/0.10.1/upgrade_to_0.11.0.md)
- [0.9.1 API references](sdk/c/0.9.1/ref.md)
Expand Down
10 changes: 5 additions & 5 deletions docs/book/en/src/sdk/c/ref.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# WasmEdge C 0.11.0 API Documentation
# WasmEdge C 0.11.1 API Documentation

[WasmEdge C API](https://github.com/WasmEdge/WasmEdge/blob/master/include/api/wasmedge/wasmedge.h) denotes an interface to access the WasmEdge runtime. The followings are the guides to working with the C APIs of WasmEdge.

**Please notice that the WasmEdge C API provides SONAME and SOVERSION after the `0.11.0` release.**

**Please notice that `libwasmedge_c.so` is renamed to `libwasmedge.so` after the `0.11.0` release. Please use `-lwasmedge` instead of `-lwasmedge_c` for the linker option.**

**This document is for the `0.11.0` version. For the older `0.10.1` version, please refer to the [document here](0.10.1/ref.md).**
**This document is for the `0.11.1` version. For the older `0.10.1` version, please refer to the [document here](0.10.1/ref.md).**

**Developers can refer to [here to upgrade to 0.11.0](0.10.1/upgrade_to_0.11.0.md).**

Expand Down Expand Up @@ -56,7 +56,7 @@
The easiest way to install WasmEdge is to run the following command. Your system should have `git` and `wget` as prerequisites.

```bash
curl -sSf https://raw.githubusercontent.com/WasmEdge/WasmEdge/master/utils/install.sh | bash -s -- -v 0.11.0
curl -sSf https://raw.githubusercontent.com/WasmEdge/WasmEdge/master/utils/install.sh | bash -s -- -v 0.11.1
```

For more details, please refer to the [Installation Guide](../../quick_start/install.md) for the WasmEdge installation.
Expand Down Expand Up @@ -86,7 +86,7 @@ After the installation of WasmEdge, the following guide can help you to test for

```bash
$ ./a.out
WasmEdge version: 0.11.0
WasmEdge version: 0.11.1
```

### ABI Compatibility
Expand All @@ -98,7 +98,7 @@ The releases before 0.11.0 are all unversioned. Please make sure the library ver
| WasmEdge Version | WasmEdge C API Library Name | WasmEdge C API SONAME | WasmEdge C API SOVERSION |
| --- | --- | --- | --- |
| < 0.11.0 | libwasmedge\_c.so | Unversioned | Unversioned |
| 0.11.0 | libwasmedge.so | libwasmedge.so.0 | libwasmedge.so.0.0.0 |
| since 0.11.0 | libwasmedge.so | libwasmedge.so.0 | libwasmedge.so.0.0.0 |

## WasmEdge Basics

Expand Down

0 comments on commit a278e50

Please sign in to comment.