File tree Expand file tree Collapse file tree 4 files changed +20
-50
lines changed Expand file tree Collapse file tree 4 files changed +20
-50
lines changed Original file line number Diff line number Diff line change
1
+ # v4.0.0
2
+
3
+ > Release & Pull Notes: [ v4.0.0] ( https://github.com/simple-robot/simpler-robot/releases/tag/v4.0.0 )
4
+
5
+ - feat(core): KookBot 支持根据引用查询消息内容的相关API ([ ` 98a7fc1..500491e ` ] ( https://github.com/simple-robot/simpler-robot/compare/98a7fc1..8e460f6 ) )
6
+
7
+ <details ><summary ><code >98a7fc1..500491e</code ></summary >
8
+
9
+ - [ ` 98a7fc1 ` ] ( https://github.com/simple-robot/simpler-robot/commit/98a7fc1 )
10
+ - [ ` 500491e ` ] ( https://github.com/simple-robot/simpler-robot/commit/500491e )
11
+
12
+ </details >
13
+
14
+ - feat(core): KookMessageContent 支持根据引用查询消息内容的相关API ([ ` 8e460f6 ` ] ( https://github.com/simple-robot/simpler-robot/commit/8e460f6 ) )
15
+ - build(deps): Update Kotlin to 2.0.10, simbot to 4.6.0 ([ ` f81d7e7 ` ] ( https://github.com/simple-robot/simpler-robot/commit/f81d7e7 ) )
16
+ - build(deps): bump ksp from 2.0.0-1.0.24 to 2.0.10-1.0.24 ([ ` 11bfb0c ` ] ( https://github.com/simple-robot/simpler-robot/commit/11bfb0c ) )
17
+
1
18
# v4.0.0-beta6
2
19
3
20
> Release & Pull Notes: [ v4.0.0-beta6] ( https://github.com/simple-robot/simpler-robot/releases/tag/v4.0.0-beta6 )
Original file line number Diff line number Diff line change 23
23
import love.forte.gradle.common.core.project.ProjectDetail
24
24
import love.forte.gradle.common.core.property.systemProp
25
25
26
- /*
27
- * Copyright (c) 2022-2022 ForteScarlet <[email protected] >
28
- *
29
- * 本文件是 simbot-component-kook 的一部分。
30
- *
31
- * simbot-component-kook 是自由软件:你可以再分发之和/或依照由自由软件基金会发布的 GNU 通用公共许可证修改之,无论是版本 3 许可证,还是(按你的决定)任何以后版都可以。
32
- *
33
- * 发布 simbot-component-kook 是希望它能有用,但是并无保障;甚至连可销售和符合某个特定的目的都不保证。请参看 GNU 通用公共许可证,了解详情。
34
- *
35
- * 你应该随程序获得一份 GNU 通用公共许可证的复本。如果没有,请看:
36
- * https://www.gnu.org/licenses
37
- * https://www.gnu.org/licenses/gpl-3.0-standalone.html
38
- * https://www.gnu.org/licenses/lgpl-3.0-standalone.html
39
- *
40
- *
41
- */
42
-
43
26
44
27
object P : ProjectDetail() {
45
28
const val GROUP = " love.forte.simbot.component"
@@ -49,8 +32,8 @@ object P : ProjectDetail() {
49
32
override val homepage: String
50
33
get() = HOMEPAGE
51
34
52
- const val VERSION = " 4.0.0-beta6 "
53
- const val NEXT_VERSION = " 4.0.0-beta7 "
35
+ const val VERSION = " 4.0.0"
36
+ const val NEXT_VERSION = " 4.0.1 "
54
37
55
38
override val snapshotVersion = " $NEXT_VERSION -SNAPSHOT"
56
39
override val version = if (isSnapshot()) snapshotVersion else VERSION
Original file line number Diff line number Diff line change @@ -50,12 +50,9 @@ fun Project.generateChangelog(tag: String) {
50
50
51
51
file.writeText(
52
52
"""
53
+ > [!note]
53
54
> 对应核心版本: [**v$coreVersion **](https://github.com/simple-robot/simpler-robot/releases/tag/v$coreVersion )
54
55
55
- > [!warning]
56
- > 目前版本尚处于 **`beta`** 阶段,代表仍然可能存在部分已知问题或未知问题,
57
- > 以及尚未完善的内容和落后于官方更新的内容。
58
-
59
56
我们欢迎并期望着您的 [反馈](https://github.com/simple-robot/simbot-component-kook/issues) 或 [协助](https://github.com/simple-robot/simbot-component-kook/pulls),感谢您的贡献与支持!
60
57
61
58
""" .trimIndent()
Original file line number Diff line number Diff line change @@ -25,33 +25,6 @@ tasks.create("createChangelog") {
25
25
group = " documentation"
26
26
doFirst {
27
27
generateChangelog(" v${P .version} " )
28
- // println("Generate change log for $version ...")
29
- // // configurations.runtimeClasspath
30
- // val changelogDir = rootProject.file(".changelog").also {
31
- // it.mkdirs()
32
- // }
33
- // val file = File(changelogDir, "$version.md")
34
- // if (!file.exists()) {
35
- // file.createNewFile()
36
- // val coreVersion = simbotVersion.toString()
37
- // val autoGenerateText = """
38
- //
39
- // **部分依赖库版本参考**
40
- //
41
- // | **库** | **版本** |
42
- // |---------|--------|
43
- // | 核心库 | [**v$coreVersion**](https://github.com/ForteScarlet/simpler-robot/releases/tag/v$coreVersion) |
44
- //
45
- // > **Warning**
46
- // 当前版本处于 **`ALPHA`**阶段,仍旧有很多[**已知问题**](https://github.com/simple-robot/simbot-component-kook/issues/)和可能存在的**潜在问题**,
47
- // 如有发现问题请积极[反馈](https://github.com/simple-robot/simbot-component-kook/issues/)或 [协助我们解决](https://github.com/simple-robot/simbot-component-kook/pulls),非常感谢!
48
- //
49
- //
50
- // """.trimIndent()
51
- //
52
- //
53
- // file.writeText(autoGenerateText)
54
- // }
55
28
}
56
29
}
57
30
You can’t perform that action at this time.
0 commit comments