Skip to content

Commit

Permalink
[Changelog] Update changelog for v0.11.2 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 Nov 3, 2022
1 parent 368f61d commit 746946a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .CurrentChangelog.md
@@ -1,12 +1,12 @@
### v0.11.2-rc.1 (2022-10-28)
### v0.11.2 (2022-11-03)

Breaking Changes:

* `WasmEdge` updated. Please install the `WasmEdge 0.11.2-rc.1` or newer version.
* `WasmEdge` updated. Please install the `WasmEdge 0.11.2` or newer version.

Features:

* Updated to the [WasmEdge 0.11.2-rc.1](https://github.com/WasmEdge/WasmEdge/releases/tag/0.11.2-rc.1).
* Updated to the [WasmEdge 0.11.2](https://github.com/WasmEdge/WasmEdge/releases/tag/0.11.2).
* Added new APIs.
* Added `wasmedge.SetLogOff()` to turn off the logging.
* Added `(*wasmedge.Configure).SetForceInterpreter()` to set the forcibly interpreter mode in configuration.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Expand Up @@ -31,7 +31,7 @@ jobs:
run: go version
- name: Install wasmedge
run: |
wget -qO- https://raw.githubusercontent.com/WasmEdge/WasmEdge/master/utils/install.sh | bash -s -- -e all -v 0.11.2-rc.1
wget -qO- https://raw.githubusercontent.com/WasmEdge/WasmEdge/master/utils/install.sh | bash -s -- -e all -v 0.11.2
- name: Build WasmEdge-go without any extensions
run: |
source $HOME/.wasmedge/env
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
run: go version
- name: Install wasmedge
run: |
wget -qO- https://raw.githubusercontent.com/WasmEdge/WasmEdge/master/utils/install.sh | bash -s -- -e all -v 0.11.2-rc.1
wget -qO- https://raw.githubusercontent.com/WasmEdge/WasmEdge/master/utils/install.sh | bash -s -- -e all -v 0.11.2
- name: Build WasmEdge-go without any extensions
run: |
source $HOME/.wasmedge/env
Expand Down
6 changes: 3 additions & 3 deletions Changelog.md
@@ -1,12 +1,12 @@
### v0.11.2-rc.1 (2022-10-28)
### v0.11.2 (2022-11-03)

Breaking Changes:

* `WasmEdge` updated. Please install the `WasmEdge 0.11.1` or newer version.
* `WasmEdge` updated. Please install the `WasmEdge 0.11.2` or newer version.

Features:

* Updated to the [WasmEdge 0.11.1](https://github.com/WasmEdge/WasmEdge/releases/tag/0.11.1).
* Updated to the [WasmEdge 0.11.2](https://github.com/WasmEdge/WasmEdge/releases/tag/0.11.2).
* Added new APIs.
* Added `wasmedge.SetLogOff()` to turn off the logging.
* Added `(*wasmedge.Configure).SetForceInterpreter()` to set the forcibly interpreter mode in configuration.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -19,13 +19,13 @@ go version go1.16.5 linux/amd64
Developers must [install the WasmEdge shared library](https://wasmedge.org/book/en/start/install.html) with the same `WasmEdge-go` release version.

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

For the developers need the `TensorFlow` or `Image` extension for `WasmEdge-go`, please install the `WasmEdge` with extensions:

```bash
curl -sSf https://raw.githubusercontent.com/WasmEdge/WasmEdge/master/utils/install.sh | bash -s -- -e all -v 0.11.2-rc.1
curl -sSf https://raw.githubusercontent.com/WasmEdge/WasmEdge/master/utils/install.sh | bash -s -- -e all -v 0.11.2
```

Noticed that the `TensorFlow` and `Image` extensions are only for the `Linux` platforms.
Expand All @@ -35,7 +35,7 @@ Noticed that the `TensorFlow` and `Image` extensions are only for the `Linux` pl
Install the `WasmEdge-go` package and build in your Go project directory:

```bash
go get github.com/second-state/WasmEdge-go/wasmedge@v0.11.2-rc.1
go get github.com/second-state/WasmEdge-go/wasmedge@v0.11.2
go build
```

Expand Down

0 comments on commit 746946a

Please sign in to comment.