Skip to content

Commit

Permalink
[README] Update changelog for 0.12.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 May 12, 2023
1 parent 165f4e0 commit 8a9d2f5
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 18 deletions.
8 changes: 3 additions & 5 deletions .CurrentChangelog.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
### 0.12.0 (2023-04-25)
### 0.12.1 (2023-05-12)

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

Features:

* Update the `WasmEdge` dependency to `0.12.0`.
* Update to use the `libtensorflow_cc` C++ API.
* Added the Ubuntu 20.04 version.
* Update the `WasmEdge` dependency to `0.12.1`.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ jobs:
submodules: true
- name: Build WasmEdge-tensorflow for Darwin x86_64
run: |
brew install llvm@14 ninja boost cmake
export LLVM_DIR="/usr/local/opt/llvm@14/lib/cmake"
brew install llvm ninja boost cmake
export LLVM_DIR="/usr/local/opt/llvm/lib/cmake"
export CC=clang
export CXX=clang++
if ! cmake -Bbuild -GNinja -DCMAKE_BUILD_TYPE=Release; then
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -232,8 +232,8 @@ jobs:
submodules: true
- name: Build WasmEdge-tensorflow for Darwin x86_64
run: |
brew install llvm@14 ninja boost cmake
export LLVM_DIR="/usr/local/opt/llvm@14/lib/cmake"
brew install llvm ninja boost cmake
export LLVM_DIR="/usr/local/opt/llvm/lib/cmake"
export CC=clang
export CXX=clang++
if ! cmake -Bbuild -GNinja -DCMAKE_BUILD_TYPE=Release; then
Expand Down
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")
set(WASMEDGE_DEPS_VERSION "0.12.1")
endif()

# Check the build architecture and system.
Expand Down
9 changes: 9 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
### 0.12.1 (2023-05-12)

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

Features:

* Update the `WasmEdge` dependency to `0.12.1`.

### 0.12.0 (2023-04-25)

This is the host function extension for [WasmEdge](https://github.com/WasmEdge/WasmEdge).
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/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
wget https://github.com/second-state/WasmEdge-tensorflow-deps/releases/download/0.12.1/WasmEdge-tensorflow-deps-TF-0.12.1-manylinux2014_x86_64.tar.gz
tar -zxvf WasmEdge-tensorflow-deps-TF-0.12.1-manylinux2014_x86_64.tar.gz
rm -f WasmEdge-tensorflow-deps-TF-0.12.1-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/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
wget https://github.com/second-state/WasmEdge-tensorflow-deps/releases/download/0.12.1/WasmEdge-tensorflow-deps-TFLite-0.12.1-manylinux2014_x86_64.tar.gz
tar -zxvf WasmEdge-tensorflow-deps-TFLite-0.12.1-manylinux2014_x86_64.tar.gz
rm -f WasmEdge-tensorflow-deps-TFLite-0.12.1-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
git checkout 0.12.1
```

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

0 comments on commit 8a9d2f5

Please sign in to comment.