From 55985289b9e347ed56d4a1623b5dc7afffc8c81a Mon Sep 17 00:00:00 2001 From: YiYing He Date: Wed, 28 Sep 2022 12:35:46 +0800 Subject: [PATCH] [README] Update changelog for 0.11.1-rc.1 pre-release. Signed-off-by: YiYing He --- .CurrentChangelog.md | 6 +++--- .github/workflows/build.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- CMakeLists.txt | 2 +- Changelog.md | 6 +++--- README.md | 14 +++++++------- utils/WasmEdge-tensorflow-deps | 2 +- 7 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.CurrentChangelog.md b/.CurrentChangelog.md index a89a6e0..c94fc21 100644 --- a/.CurrentChangelog.md +++ b/.CurrentChangelog.md @@ -1,8 +1,8 @@ -### 0.11.1-alpha.1 (2022-09-26) +### 0.11.1-rc.1 (2022-09-28) This is the host function extension for [WasmEdge](https://github.com/WasmEdge/WasmEdge). -Please refer to the [WasmEdge 0.11.1-alpha.1](https://github.com/WasmEdge/WasmEdge/releases/tag/0.11.1-alpha.1) for more details. +Please refer to the [WasmEdge 0.11.1-rc.1](https://github.com/WasmEdge/WasmEdge/releases/tag/0.11.1-rc.1) for more details. Features: -* Update the `WasmEdge` dependency to `0.11.1-alpha.1`. +* Update the `WasmEdge` dependency to `0.11.1-rc.1`. diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7f99d0b..72bd9b9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -67,8 +67,8 @@ jobs: submodules: true - name: Build WasmEdge-image for Darwin x86_64 run: | - brew install llvm ninja boost cmake - export LLVM_DIR="/usr/local/opt/llvm/lib/cmake" + brew install llvm@14 ninja boost cmake + export LLVM_DIR="/usr/local/opt/llvm@14/lib/cmake" export CC=clang export CXX=clang++ if ! cmake -Bbuild -GNinja -DCMAKE_BUILD_TYPE=Release; then diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a2b1321..13f5368 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -184,8 +184,8 @@ jobs: submodules: true - name: Build WasmEdge-tensorflow for Darwin x86_64 run: | - brew install llvm ninja boost cmake - export LLVM_DIR="/usr/local/opt/llvm/lib/cmake" + brew install llvm@14 ninja boost cmake + export LLVM_DIR="/usr/local/opt/llvm@14/lib/cmake" export CC=clang export CXX=clang++ if ! cmake -Bbuild -GNinja -DCMAKE_BUILD_TYPE=Release; then diff --git a/CMakeLists.txt b/CMakeLists.txt index 5a66c01..cf47917 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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-alpha.1") + set(WASMEDGE_DEPS_VERSION "0.11.1-rc.1") endif() # Check the build architecture and system. diff --git a/Changelog.md b/Changelog.md index bf413fc..55549c6 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,11 +1,11 @@ -### 0.11.1-alpha.1 (2022-09-26) +### 0.11.1-rc.1 (2022-09-28) This is the host function extension for [WasmEdge](https://github.com/WasmEdge/WasmEdge). -Please refer to the [WasmEdge 0.11.1-alpha.1](https://github.com/WasmEdge/WasmEdge/releases/tag/0.11.1-alpha.1) for more details. +Please refer to the [WasmEdge 0.11.1-rc.1](https://github.com/WasmEdge/WasmEdge/releases/tag/0.11.1-rc.1) for more details. Features: -* Update the `WasmEdge` dependency to `0.11.1-alpha.1`. +* Update the `WasmEdge` dependency to `0.11.1-rc.1`. ### 0.11.0 (2022-08-31) diff --git a/README.md b/README.md index 7b0a761..f62d319 100644 --- a/README.md +++ b/README.md @@ -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-alpha.1/WasmEdge-tensorflow-deps-TF-0.11.1-alpha.1-manylinux2014_x86_64.tar.gz -tar -zxvf WasmEdge-tensorflow-deps-TF-0.11.1-alpha.1-manylinux2014_x86_64.tar.gz -rm -f WasmEdge-tensorflow-deps-TF-0.11.1-alpha.1-manylinux2014_x86_64.tar.gz +wget https://github.com/second-state/WasmEdge-tensorflow-deps/releases/download/0.11.1-rc.1/WasmEdge-tensorflow-deps-TF-0.11.1-rc.1-manylinux2014_x86_64.tar.gz +tar -zxvf WasmEdge-tensorflow-deps-TF-0.11.1-rc.1-manylinux2014_x86_64.tar.gz +rm -f WasmEdge-tensorflow-deps-TF-0.11.1-rc.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-alpha.1/WasmEdge-tensorflow-deps-TFLite-0.11.1-alpha.1-manylinux2014_x86_64.tar.gz -tar -zxvf WasmEdge-tensorflow-deps-TFLite-0.11.1-alpha.1-manylinux2014_x86_64.tar.gz -rm -f WasmEdge-tensorflow-deps-TFLite-0.11.1-alpha.1-manylinux2014_x86_64.tar.gz +wget https://github.com/second-state/WasmEdge-tensorflow-deps/releases/download/0.11.1-rc.1/WasmEdge-tensorflow-deps-TFLite-0.11.1-rc.1-manylinux2014_x86_64.tar.gz +tar -zxvf WasmEdge-tensorflow-deps-TFLite-0.11.1-rc.1-manylinux2014_x86_64.tar.gz +rm -f WasmEdge-tensorflow-deps-TFLite-0.11.1-rc.1-manylinux2014_x86_64.tar.gz ``` ### Prepare the environment @@ -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-alpha.1 +git checkout 0.11.1-rc.1 ``` ### Build WasmEdge-Tensorflow diff --git a/utils/WasmEdge-tensorflow-deps b/utils/WasmEdge-tensorflow-deps index 750fa46..e9f672c 160000 --- a/utils/WasmEdge-tensorflow-deps +++ b/utils/WasmEdge-tensorflow-deps @@ -1 +1 @@ -Subproject commit 750fa46ae8c435cad34d67528e4b29b19439814d +Subproject commit e9f672cc55a96d91d3a1a427fd1512ff1c97bfd0