From 80d72d6f78636c386906339d7488ec04626bbfd6 Mon Sep 17 00:00:00 2001 From: Rechie Kho <50512341+RechieKho@users.noreply.github.com> Date: Thu, 10 Oct 2024 23:36:02 +0800 Subject: [PATCH] Delete `CHANGELOG.md` --- .github/workflows/publish.yml | 2 -- CHANGELOG.md | 43 ----------------------------------- 2 files changed, 45 deletions(-) delete mode 100644 CHANGELOG.md diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 74ed194f..0ad4f1ea 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -25,7 +25,6 @@ jobs: run: | cp -rf ${{ github.workspace }}/iree.gd/addons/iree-gd/* ${{ github.workspace }}/sample/addons/iree-gd cp -rf ${{ github.workspace }}/miscellaneous/iree-gd.gdextension ${{ github.workspace }}/sample/addons/iree-gd/iree-gd.gdextension - cp -rf ${{ github.workspace }}/CHANGELOG.md ${{ github.workspace }}/sample/addons/iree-gd cp -rf ${{ github.workspace }}/LICENSE ${{ github.workspace }}/sample/addons/iree-gd cp -rf ${{ github.workspace }}/README.md ${{ github.workspace }}/sample/addons/iree-gd @@ -45,7 +44,6 @@ jobs: - name: Release uses: softprops/action-gh-release@v1 with: - body_path: ${{ github.workspace }}/CHANGELOG.md token: ${{ secrets.GITHUB_TOKEN }} files: | ${{ github.workspace }}/iree-gd-${{ github.ref_name }}.zip diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 32742811..00000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,43 +0,0 @@ -# Change Log - -`iree.gd`, [IREE](https://github.com/openxla/iree) runtime in Godot through GDExtension, a mission to run machine learning model (e.g. Tensorflow lite) natively in Godot. - -This is the change log of `iree.gd`. - -## [v0.0.1-alpha6] Upgrade IREE - -- Upgrade IREE version. -- Add pose detection example. -- Remove synchronous execution. - -## [v0.0.1-alpha5] Add asynchronous execution - -- Add asynchronous execution. -- Update IREE to `candidate-20240123.779`. -- Add CI/CD for Mac OS and iOS. - -## [v0.0.1-alpha4] Improve demo ease of use - -- Defer context initialization to raise error only on `IREEModule::run_module`. -- Detect platform to use the correct bytecode. -- Set sample's main scene. - -## [v0.0.1-alpha3] Quick import `.vmfb` files - -- Import `.vmfb` files directly. (Thanks to [Dragos Daian](https://github.com/Ughuuu)) -- Fix Linux ARM build. - -## [v0.0.1-alpha2] Update sample bytecodes - -- Improve logging `IREE` error. -- Update sample bytecodes. - -## [v0.0.1-alpha1] Windows build fix - -- Export `.dll` instead of `lib` for windows build. - -## [v0.0.1-alpha0] The very beginning - -- Add `IREETensor` and `IREEModule` for executing machine learning models. -- Add a sample for people to try out. -- Add builds for Android, Linux and Windows.