From 0f77c57e0cef05c9175e50908d92cd0995d3791d Mon Sep 17 00:00:00 2001 From: ForteScarlet Date: Thu, 29 Aug 2024 22:54:37 +0800 Subject: [PATCH] release: v4.0.2 --- .changelog/v4.0.2.md | 4 ++++ CHANGELOG.md | 6 ++++++ buildSrc/src/main/kotlin/P.kt | 4 ++-- 3 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 .changelog/v4.0.2.md diff --git a/.changelog/v4.0.2.md b/.changelog/v4.0.2.md new file mode 100644 index 00000000..5b045d68 --- /dev/null +++ b/.changelog/v4.0.2.md @@ -0,0 +1,4 @@ +> [!note] +> 对应核心版本: [**v4.6.0**](https://github.com/simple-robot/simpler-robot/releases/tag/v4.6.0) + +我们欢迎并期望着您的 [反馈](https://github.com/simple-robot/simbot-component-kook/issues) 或 [协助](https://github.com/simple-robot/simbot-component-kook/pulls),感谢您的贡献与支持! diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b2bc6b5..67c99c48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# v4.0.2 + +> Release & Pull Notes: [v4.0.2](https://github.com/simple-robot/simpler-robot/releases/tag/v4.0.2) + +- fix(core): 修复事件中接收的 MessageContent 中, `referenceMessage` 的行为与 `reference` 不一致,会错误地获取自身消息详情而非引用消息详情的问题 ([`517e442`](https://github.com/simple-robot/simpler-robot/commit/517e442)) + # v4.0.1 > Release & Pull Notes: [v4.0.1](https://github.com/simple-robot/simpler-robot/releases/tag/v4.0.1) diff --git a/buildSrc/src/main/kotlin/P.kt b/buildSrc/src/main/kotlin/P.kt index 351625f3..b0e12b0b 100644 --- a/buildSrc/src/main/kotlin/P.kt +++ b/buildSrc/src/main/kotlin/P.kt @@ -32,8 +32,8 @@ object P : ProjectDetail() { override val homepage: String get() = HOMEPAGE - const val VERSION = "4.0.1" - const val NEXT_VERSION = "4.0.2" + const val VERSION = "4.0.2" + const val NEXT_VERSION = "4.0.3" override val snapshotVersion = "$NEXT_VERSION-SNAPSHOT" override val version = if (isSnapshot()) snapshotVersion else VERSION