diff --git a/docs-source/src/en/about/changelog.md b/docs-source/src/en/about/changelog.md
index da9ad2c7..ed37a29d 100644
--- a/docs-source/src/en/about/changelog.md
+++ b/docs-source/src/en/about/changelog.md
@@ -16,7 +16,13 @@ Time zone of version release date: **UTC+8**
:::
-### 1.2.0 | 2023.10.07
+### 1.2.1 | 2024.06.20
+
+- Catch exceptions in singleton Hooker to prevent it from blocking the entire process
+- Add automatic use of "`" in the automatic handler to fix the situation where Kotlin keywords are package names, thanks to [Fengning Zhu](https://github.com/zhufengning) for [PR](https://github.com/HighCapable/YukiHookAPI/pull/70)
+- Adapt to Kotlin 2.0.0+, fix the problem that it cannot be compiled during automatic processing, thanks to [xihan123](https://github.com/xihan123) for [PR](https://github.com/HighCapable/YukiHookAPI/pull/76)
+
+### 1.2.0 | 2023.10.07
- The license agreement has been changed from `MIT` to `Apache-2.0`, subsequent versions will be distributed under this license agreement, you should change the relevant license agreement after using this version
- This is a breaking update, please refer to [Migrate to YukiHookAPI 1.2.x](https://highcapable.github.io/YukiHookAPI/en/config/move-to-api-1-2-x) for details
diff --git a/docs-source/src/zh-cn/about/changelog.md b/docs-source/src/zh-cn/about/changelog.md
index 759c8e93..185984a6 100644
--- a/docs-source/src/zh-cn/about/changelog.md
+++ b/docs-source/src/zh-cn/about/changelog.md
@@ -8,7 +8,13 @@
:::
-### 1.2.0 | 2023.10.07
+### 1.2.1 | 2024.06.20
+
+- 捕获单例 Hooker 中的异常,防止其阻断整个进程
+- 在自动处理程序中添加自动使用 "`" 来修复 Kotlin 关键字为包名的情况,感谢 [Fengning Zhu](https://github.com/zhufengning) 的 [PR](https://github.com/HighCapable/YukiHookAPI/pull/70)
+- 适配 Kotlin 2.0.0+,修复在自动处理过程中无法通过编译的问题,感谢 [xihan123](https://github.com/xihan123) 的 [PR](https://github.com/HighCapable/YukiHookAPI/pull/76)
+
+### 1.2.0 | 2023.10.07
- 许可协议由 `MIT` 变更为 `Apache-2.0`,在此之后的版本将由此许可协议进行分发,您在使用此版本后应变更相关许可协议
- 这是一次重大更新,详情请参考 [迁移到 YukiHookAPI 1.2.x](https://highcapable.github.io/YukiHookAPI/zh-cn/config/move-to-api-1-2-x)
diff --git a/gradle.properties b/gradle.properties
index 84fa7b34..29245318 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -9,7 +9,7 @@ project.name=YukiHookAPI
project.url=https://github.com/HighCapable/YukiHookAPI
project.groupName=com.highcapable.yukihookapi
project.yukihookapi-core.moduleName=api
-project.yukihookapi-core.version="1.2.0"
+project.yukihookapi-core.version="1.2.1"
project.yukihookapi-ksp-xposed.moduleName=ksp-xposed
project.yukihookapi-ksp-xposed.version=${project.yukihookapi-core.version}
project.android.compileSdk=34