diff --git a/README.md b/README.md index 11c71c2a..9b057508 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ ## 🔥 更新和安装 -**最新版本: v0.10.0** ([更新日志](changelogs/changelog.md)) +**最新版本: v0.10.1** ([更新日志](changelogs/changelog.md)) 可前往 [Release](https://github.com/MaiM-with-u/MaiBot/releases/) 页面下载最新版本 可前往 [启动器发布页面](https://github.com/MaiM-with-u/mailauncher/releases/)下载最新启动器 @@ -59,9 +59,8 @@ - [🚀 最新版本部署教程](https://docs.mai-mai.org/manual/deployment/mmc_deploy_windows.html) - 基于 MaiCore 的新版本部署方式(与旧版本不兼容) > [!WARNING] -> - 从 0.6.x 旧版本升级前请务必阅读:[升级指南](https://docs.mai-mai.org/faq/maibot/update_to_07.html) > - 项目处于活跃开发阶段,功能和 API 可能随时调整。 -> - 文档未完善,有问题可以提交 Issue 或者 Discussion。 +> - 有问题可以提交 Issue 或者 Discussion。 > - QQ 机器人存在被限制风险,请自行了解,谨慎使用。 > - 由于程序处于开发中,可能消耗较多 token。 diff --git a/changelogs/changelog.md b/changelogs/changelog.md index 1b4d18e3..5679a228 100644 --- a/changelogs/changelog.md +++ b/changelogs/changelog.md @@ -1,6 +1,15 @@ # Changelog -## [0.10.0] - 2025-7-1 +## [0.10.1] - 2025-8- + +- 修复激活值计算异常的BUG +- 修复lpmm日志错误 +- 修复首句不回复的问题 +- 修复emoji管理器的一个BUG +- 优化对模型请求的处理 +- 重构内部代码 + +## [0.10.0] - 2025-8-18 ### 🌟 主要功能更改 - 优化的回复生成,现在的回复对上下文把控更加精准 - 新的回复逻辑控制,现在合并了normal和focus模式,更加统一 diff --git a/src/config/config.py b/src/config/config.py index b4d81ab3..bb12b1d3 100644 --- a/src/config/config.py +++ b/src/config/config.py @@ -56,7 +56,7 @@ TEMPLATE_DIR = os.path.join(PROJECT_ROOT, "template") # 考虑到,实际上配置文件中的mai_version是不会自动更新的,所以采用硬编码 # 对该字段的更新,请严格参照语义化版本规范:https://semver.org/lang/zh-CN/ -MMC_VERSION = "0.10.0" +MMC_VERSION = "0.10.1" def get_key_comment(toml_table, key):