Skip to content

Commit

Permalink
[README] Update changelog for 0.12.0 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 Apr 25, 2023
1 parent aac1ade commit 165f4e0
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 15 deletions.
7 changes: 4 additions & 3 deletions .CurrentChangelog.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
### 0.12.0-alpha.2 (2023-02-24)
### 0.12.0 (2023-04-25)

This is the host function extension for [WasmEdge](https://github.com/WasmEdge/WasmEdge).
Please refer to the [WasmEdge 0.12.0-alpha.2](https://github.com/WasmEdge/WasmEdge/releases/tag/0.12.0-alpha.2) for more details.
Please refer to the [WasmEdge 0.12.0](https://github.com/WasmEdge/WasmEdge/releases/tag/0.12.0) for more details.

Features:

* Update the `WasmEdge` dependency to `0.12.0-alpha.2`.
* Update the `WasmEdge` dependency to `0.12.0`.
* Update to use the `libtensorflow_cc` C++ API.
* Added the Ubuntu 20.04 version.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ option(WASMEDGE_TENSORFLOW_BUILD_SHARED_LIB "Generate the libwasmedge-tensorflow

# WasmEdge dependencies versions
if(NOT WASMEDGE_DEPS_VERSION)
set(WASMEDGE_DEPS_VERSION "0.12.0-alpha.2")
set(WASMEDGE_DEPS_VERSION "0.12.0")
endif()

# Check the build architecture and system.
Expand Down
7 changes: 4 additions & 3 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
### 0.12.0-alpha.2 (2023-02-24)
### 0.12.0 (2023-04-25)

This is the host function extension for [WasmEdge](https://github.com/WasmEdge/WasmEdge).
Please refer to the [WasmEdge 0.12.0-alpha.2](https://github.com/WasmEdge/WasmEdge/releases/tag/0.12.0-alpha.2) for more details.
Please refer to the [WasmEdge 0.12.0](https://github.com/WasmEdge/WasmEdge/releases/tag/0.12.0) for more details.

Features:

* Update the `WasmEdge` dependency to `0.12.0-alpha.2`.
* Update the `WasmEdge` dependency to `0.12.0`.
* Update to use the `libtensorflow_cc` C++ API.
* Added the Ubuntu 20.04 version.

### 0.11.2 (2022-11-01)

Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ The official TensorFlow release only provide the TensorFlow shared library.
You can download and install the pre-built shared libraries:

```bash
wget https://github.com/second-state/WasmEdge-tensorflow-deps/releases/download/0.12.0-alpha.2/WasmEdge-tensorflow-deps-TF-0.12.0-alpha.2-manylinux2014_x86_64.tar.gz
tar -zxvf WasmEdge-tensorflow-deps-TF-0.12.0-alpha.2-manylinux2014_x86_64.tar.gz
rm -f WasmEdge-tensorflow-deps-TF-0.12.0-alpha.2-manylinux2014_x86_64.tar.gz
wget https://github.com/second-state/WasmEdge-tensorflow-deps/releases/download/0.12.0/WasmEdge-tensorflow-deps-TF-0.12.0-manylinux2014_x86_64.tar.gz
tar -zxvf WasmEdge-tensorflow-deps-TF-0.12.0-manylinux2014_x86_64.tar.gz
rm -f WasmEdge-tensorflow-deps-TF-0.12.0-manylinux2014_x86_64.tar.gz
ln -sf libtensorflow_cc.so.2.6.0 libtensorflow_cc.so.2
ln -sf libtensorflow_cc.so.2 libtensorflow_cc.so
ln -sf libtensorflow_framework.so.2.6.0 libtensorflow_framework.so.2
ln -sf libtensorflow_framework.so.2 libtensorflow_framework.so
wget https://github.com/second-state/WasmEdge-tensorflow-deps/releases/download/0.12.0-alpha.2/WasmEdge-tensorflow-deps-TFLite-0.12.0-alpha.2-manylinux2014_x86_64.tar.gz
tar -zxvf WasmEdge-tensorflow-deps-TFLite-0.12.0-alpha.2-manylinux2014_x86_64.tar.gz
rm -f WasmEdge-tensorflow-deps-TFLite-0.12.0-alpha.2-manylinux2014_x86_64.tar.gz
wget https://github.com/second-state/WasmEdge-tensorflow-deps/releases/download/0.12.0/WasmEdge-tensorflow-deps-TFLite-0.12.0-manylinux2014_x86_64.tar.gz
tar -zxvf WasmEdge-tensorflow-deps-TFLite-0.12.0-manylinux2014_x86_64.tar.gz
rm -f WasmEdge-tensorflow-deps-TFLite-0.12.0-manylinux2014_x86_64.tar.gz
```

### Prepare the environment
Expand Down Expand Up @@ -59,7 +59,7 @@ sudo apt install -y clang
```bash
git clone --recursive https://github.com/second-state/WasmEdge-tensorflow.git
cd WasmEdge-tensorflow
git checkout 0.12.0-alpha.2
git checkout 0.12.0
```

### Build WasmEdge-Tensorflow
Expand Down
2 changes: 1 addition & 1 deletion utils/WasmEdge-tensorflow-deps

0 comments on commit 165f4e0

Please sign in to comment.