From 464882f20627f3fe6346fff76c973e58127edb05 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Wed, 4 Feb 2026 23:21:08 +0800 Subject: [PATCH] chore: bump version to 4.14.4 --- astrbot/cli/__init__.py | 2 +- astrbot/core/config/default.py | 2 +- changelogs/v4.14.4.md | 4 ++++ pyproject.toml | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) create mode 100644 changelogs/v4.14.4.md diff --git a/astrbot/cli/__init__.py b/astrbot/cli/__init__.py index 26066ebef..3914306d0 100644 --- a/astrbot/cli/__init__.py +++ b/astrbot/cli/__init__.py @@ -1 +1 @@ -__version__ = "4.14.3" +__version__ = "4.14.4" diff --git a/astrbot/core/config/default.py b/astrbot/core/config/default.py index 933edf2b3..10a6fc599 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.14.2" +VERSION = "4.14.4" DB_PATH = os.path.join(get_astrbot_data_path(), "data_v4.db") WEBHOOK_SUPPORTED_PLATFORMS = [ diff --git a/changelogs/v4.14.4.md b/changelogs/v4.14.4.md new file mode 100644 index 000000000..3c881ae49 --- /dev/null +++ b/changelogs/v4.14.4.md @@ -0,0 +1,4 @@ +## What's Changed + +### 修复 +- 修复 token 统计错误的问题,修复在多轮 tool call 情况下或者其他极端情况下可能造成 tool 无限调用的问题。 diff --git a/pyproject.toml b/pyproject.toml index e2d016d9a..e98707944 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "AstrBot" -version = "4.14.3" +version = "4.14.4" description = "Easy-to-use multi-platform LLM chatbot and development framework" readme = "README.md" requires-python = ">=3.10"