Skip to content

Commit

Permalink
[README] Update changelog for 0.11.2-alpha.1 pre-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 25, 2022
1 parent 5a9f2c3 commit be5ef8d
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .CurrentChangelog.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
### 0.11.1 (2022-10-03)
### 0.11.2-alpha.1 (2022-10-25)

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

Features:

* Update the `WasmEdge` dependency to `0.11.1`.
* Update the `WasmEdge` dependency to `0.11.2-alpha.1`.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
host_runner: ubuntu-latest
docker_tag: manylinux2014_x86_64
- name: manylinux2014 aarch64
host_runner: ARM64
host_runner: linux-arm64
docker_tag: manylinux2014_aarch64
name: ${{ matrix.name }} platform
runs-on: ${{ matrix.host_runner }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
build_and_upload_manylinux2014_aarch64:
name: Build WasmEdge-TensorFlow on manylinux2014_aarch64 platform
needs: create
runs-on: ARM64
runs-on: linux-arm64
container:
image: wasmedge/wasmedge:manylinux2014_aarch64
steps:
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.11.1")
set(WASMEDGE_DEPS_VERSION "0.11.2-alpha.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.11.2-alpha.1 (2022-10-25)

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

Features:

* Update the `WasmEdge` dependency to `0.11.2-alpha.1`.

### 0.11.1 (2022-10-03)

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.11.1/WasmEdge-tensorflow-deps-TF-0.11.1-manylinux2014_x86_64.tar.gz
tar -zxvf WasmEdge-tensorflow-deps-TF-0.11.1-manylinux2014_x86_64.tar.gz
rm -f WasmEdge-tensorflow-deps-TF-0.11.1-manylinux2014_x86_64.tar.gz
wget https://github.com/second-state/WasmEdge-tensorflow-deps/releases/download/0.11.2-alpha.1/WasmEdge-tensorflow-deps-TF-0.11.2-alpha.1-manylinux2014_x86_64.tar.gz
tar -zxvf WasmEdge-tensorflow-deps-TF-0.11.2-alpha.1-manylinux2014_x86_64.tar.gz
rm -f WasmEdge-tensorflow-deps-TF-0.11.2-alpha.1-manylinux2014_x86_64.tar.gz
ln -sf libtensorflow.so.2.6.0 libtensorflow.so.2
ln -sf libtensorflow.so.2 libtensorflow.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.11.1/WasmEdge-tensorflow-deps-TFLite-0.11.1-manylinux2014_x86_64.tar.gz
tar -zxvf WasmEdge-tensorflow-deps-TFLite-0.11.1-manylinux2014_x86_64.tar.gz
rm -f WasmEdge-tensorflow-deps-TFLite-0.11.1-manylinux2014_x86_64.tar.gz
wget https://github.com/second-state/WasmEdge-tensorflow-deps/releases/download/0.11.2-alpha.1/WasmEdge-tensorflow-deps-TFLite-0.11.2-alpha.1-manylinux2014_x86_64.tar.gz
tar -zxvf WasmEdge-tensorflow-deps-TFLite-0.11.2-alpha.1-manylinux2014_x86_64.tar.gz
rm -f WasmEdge-tensorflow-deps-TFLite-0.11.2-alpha.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.11.1
git checkout 0.11.2-alpha.1
```

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

0 comments on commit be5ef8d

Please sign in to comment.