From c2af2c6d5e47e8d14092a5fd6195b7244424fbda Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Mon, 12 Jan 2026 20:42:49 +0800 Subject: [PATCH] chore: bump version to 4.11.4 --- EULA.md | 6 ++++-- astrbot/cli/__init__.py | 2 +- astrbot/core/config/default.py | 2 +- changelogs/v4.11.4.md | 3 +++ pyproject.toml | 2 +- 5 files changed, 10 insertions(+), 5 deletions(-) create mode 100644 changelogs/v4.11.4.md diff --git a/EULA.md b/EULA.md index 3eb780ede..709a42d6c 100644 --- a/EULA.md +++ b/EULA.md @@ -2,6 +2,8 @@ > 我们热爱开源软件,并始终致力于为所有用户提供健康、安全、可靠的使用体验。 ❤️ +For Enlish edition, please refer to the section below the Chinese version. + **最后更新:** 2026-01-12 感谢您使用 **AstrBot**。 @@ -66,7 +68,7 @@ AstrBot 团队**已尽合理努力在技术和策略层面设置安全与内容 * 世界上任何的系统均无法保证完全无误、绝对安全或无法被滥用; * 用户仍有责任自行合理配置、监督并正确使用本系统。 -如果您要关闭 AstrBot 默认启用的“健康模式”,请在 cmd_config.json 中将 `provider_settings.llm_safety_mode` 设置为 `False`。 +如果您要关闭 AstrBot 默认启用的“健康模式”,请在 cmd_config.json 中将 `provider_settings.llm_safety_mode` 设置为 `False`。但请注意,关闭健康模式不是推荐的使用方式,可能导致系统输出不安全或不适当的内容。关闭该功能所产生的任何风险与后果,均由用户自行承担,AstrBot 团队不对此承担任何责任。 ## 7. 心理健康提示 @@ -189,7 +191,7 @@ However, please understand that: * No system in the world can be guaranteed to be completely error-free, absolutely secure, or immune to misuse; * Users remain responsible for properly configuring, supervising, and using the system. -If you wish to disable AstrBot’s default “Safety Mode,” please set `provider_settings.llm_safety_mode` to `False` in `cmd_config.json`. +If you wish to disable AstrBot’s default “Safety Mode,” please set `provider_settings.llm_safety_mode` to `False` in `cmd_config.json`. However, please note that disabling Safety Mode is not recommended and may lead to unsafe or inappropriate outputs. Any risks or consequences arising from disabling this feature are solely borne by the user, and the AstrBot Team assumes no responsibility. ## 7. Mental Health Notice diff --git a/astrbot/cli/__init__.py b/astrbot/cli/__init__.py index f2c314c15..0f60e612e 100644 --- a/astrbot/cli/__init__.py +++ b/astrbot/cli/__init__.py @@ -1 +1 @@ -__version__ = "4.11.3" +__version__ = "4.11.4" diff --git a/astrbot/core/config/default.py b/astrbot/core/config/default.py index e37650273..cca842acb 100644 --- a/astrbot/core/config/default.py +++ b/astrbot/core/config/default.py @@ -5,7 +5,7 @@ from typing import Any, TypedDict from astrbot.core.utils.astrbot_path import get_astrbot_data_path -VERSION = "4.11.3" +VERSION = "4.11.4" DB_PATH = os.path.join(get_astrbot_data_path(), "data_v4.db") WEBHOOK_SUPPORTED_PLATFORMS = [ diff --git a/changelogs/v4.11.4.md b/changelogs/v4.11.4.md new file mode 100644 index 000000000..9006b582d --- /dev/null +++ b/changelogs/v4.11.4.md @@ -0,0 +1,3 @@ +## What's Changed + +Same of v4.11.3 diff --git a/pyproject.toml b/pyproject.toml index 0cdf0df6b..ab50a49b9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "AstrBot" -version = "4.11.3" +version = "4.11.4" description = "Easy-to-use multi-platform LLM chatbot and development framework" readme = "README.md" requires-python = ">=3.10"