Skip to content

Commit

Permalink
release: v4.0.0-beta6
Browse files Browse the repository at this point in the history
  • Loading branch information
ForteScarlet committed Aug 12, 2024
1 parent bd15b6a commit a9d7613
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 27 deletions.
7 changes: 7 additions & 0 deletions .changelog/v4.0.0-beta6.md
Original file line number Diff line number Diff line change
@@ -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),感谢您的贡献与支持!
27 changes: 2 additions & 25 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}

Expand Down Expand Up @@ -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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/P.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a9d7613

Please sign in to comment.