From a9d7613ca43ee5be8fd1db90f0b894040cf56a2d Mon Sep 17 00:00:00 2001 From: ForteScarlet Date: Mon, 12 Aug 2024 17:37:14 +0800 Subject: [PATCH] release: v4.0.0-beta6 --- .changelog/v4.0.0-beta6.md | 7 +++++++ .github/workflows/publish-release.yml | 27 ++------------------------- CHANGELOG.md | 7 +++++++ buildSrc/src/main/kotlin/P.kt | 4 ++-- 4 files changed, 18 insertions(+), 27 deletions(-) create mode 100644 .changelog/v4.0.0-beta6.md diff --git a/.changelog/v4.0.0-beta6.md b/.changelog/v4.0.0-beta6.md new file mode 100644 index 00000000..a18f9fde --- /dev/null +++ b/.changelog/v4.0.0-beta6.md @@ -0,0 +1,7 @@ +> 对应核心版本: [**v4.5.0**](https://github.com/simple-robot/simpler-robot/releases/tag/v4.5.0) + +> [!warning] +> 目前版本尚处于 **`beta`** 阶段,代表仍然可能存在部分已知问题或未知问题, +> 以及尚未完善的内容和落后于官方更新的内容。 + +我们欢迎并期望着您的 [反馈](https://github.com/simple-robot/simbot-component-kook/issues) 或 [协助](https://github.com/simple-robot/simbot-component-kook/pulls),感谢您的贡献与支持! diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 87095493..3816db40 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -88,10 +88,11 @@ jobs: # Create gitHub release - name: Create Github Release - uses: softprops/action-gh-release@v0.1.15 + uses: softprops/action-gh-release@v2 with: token: ${{ secrets.PUSH_TOKEN }} body_path: .changelog/${{ github.ref_name }}.md + body: '' generate_release_notes: true prerelease: ${{ contains(github.ref_name, 'preview') || contains(github.ref_name, 'alpha') || contains(github.ref_name, 'dev') }} @@ -137,27 +138,3 @@ jobs: # deploy to sub dir destination_dir: components/kook -# deploy-website: -# name: Deploy Website -# runs-on: ubuntu-latest -# needs: run-test-and-publish -# steps: -# - uses: actions/checkout@v4 -# - uses: actions/setup-node@v3 -# with: -# node-version: 16.x -# cache: npm -# cache-dependency-path: ./website/package-lock.json -# -# - run: | -# npm ci -# npm run build -# working-directory: ./website -# -# # https://github.com/marketplace/actions/github-pages-action -# - name: Push to doc repository -# uses: peaceiris/actions-gh-pages@v3 -# with: -# personal_token: ${{ secrets.PUSH_TOKEN }} -# publish_branch: gh-pages -# publish_dir: ./website/build diff --git a/CHANGELOG.md b/CHANGELOG.md index c659d811..bf0a0c23 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# v4.0.0-beta6 + +> Release & Pull Notes: [v4.0.0-beta6](https://github.com/simple-robot/simpler-robot/releases/tag/v4.0.0-beta6) + +- optimize(internal): 简单优化内部的KSP ([`bd15b6a`](https://github.com/simple-robot/simpler-robot/commit/bd15b6a)) +- fix(api): 修复 CreateAssetApi 使用的错误请求头 ([`f0a0fe0`](https://github.com/simple-robot/simpler-robot/commit/f0a0fe0)) + # v4.0.0-beta5 > Release & Pull Notes: [v4.0.0-beta5](https://github.com/simple-robot/simpler-robot/releases/tag/v4.0.0-beta5) diff --git a/buildSrc/src/main/kotlin/P.kt b/buildSrc/src/main/kotlin/P.kt index 3eda9e1e..23882083 100644 --- a/buildSrc/src/main/kotlin/P.kt +++ b/buildSrc/src/main/kotlin/P.kt @@ -49,8 +49,8 @@ object P : ProjectDetail() { override val homepage: String get() = HOMEPAGE - const val VERSION = "4.0.0-beta5" - const val NEXT_VERSION = "4.0.0-beta6" + const val VERSION = "4.0.0-beta6" + const val NEXT_VERSION = "4.0.0-beta7" override val snapshotVersion = "$NEXT_VERSION-SNAPSHOT" override val version = if (isSnapshot()) snapshotVersion else VERSION