diff --git a/astrbot/cli/__init__.py b/astrbot/cli/__init__.py index ab9d6f875..13398e442 100644 --- a/astrbot/cli/__init__.py +++ b/astrbot/cli/__init__.py @@ -1 +1 @@ -__version__ = "4.13.1" +__version__ = "4.13.2" diff --git a/astrbot/core/config/default.py b/astrbot/core/config/default.py index 1e69392c9..fe044facc 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.13.1" +VERSION = "4.13.2" DB_PATH = os.path.join(get_astrbot_data_path(), "data_v4.db") WEBHOOK_SUPPORTED_PLATFORMS = [ diff --git a/changelogs/v4.13.2.md b/changelogs/v4.13.2.md new file mode 100644 index 000000000..4c21912bb --- /dev/null +++ b/changelogs/v4.13.2.md @@ -0,0 +1,8 @@ +## What's Changed + +### fixes + +- feat(chat): feat: trace and log file config ([#4747](https://github.com/AstrBotDevs/AstrBot/issues/4747)) +- fix: WebUI shows success message when skills upload failed ([#4768](https://github.com/AstrBotDevs/AstrBot/issues/4768)) +- fix: cannot use tools when using skills-like tool schema mode ([#4775](https://github.com/AstrBotDevs/AstrBot/issues/4775)) +- fix(context): llm tools' origin in WebUI displayed `unknown` ([#4776](https://github.com/AstrBotDevs/AstrBot/issues/4776)) diff --git a/pyproject.toml b/pyproject.toml index 2c08b1479..530bd56cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "AstrBot" -version = "4.13.1" +version = "4.13.2" description = "Easy-to-use multi-platform LLM chatbot and development framework" readme = "README.md" requires-python = ">=3.10"