diff --git a/astrbot/cli/__init__.py b/astrbot/cli/__init__.py index 3700e7a2b..f3d3033c8 100644 --- a/astrbot/cli/__init__.py +++ b/astrbot/cli/__init__.py @@ -1 +1 @@ -__version__ = "4.19.0" +__version__ = "4.19.1" diff --git a/astrbot/core/config/default.py b/astrbot/core/config/default.py index d180d731a..d8ecbca93 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.19.0" +VERSION = "4.19.1" DB_PATH = os.path.join(get_astrbot_data_path(), "data_v4.db") WEBHOOK_SUPPORTED_PLATFORMS = [ diff --git a/changelogs/v4.19.0.md b/changelogs/v4.19.1.md similarity index 100% rename from changelogs/v4.19.0.md rename to changelogs/v4.19.1.md diff --git a/pyproject.toml b/pyproject.toml index b59960aab..b8d68c0c9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,9 +1,9 @@ [project] name = "AstrBot" -version = "4.19.0" +version = "4.19.1" description = "Easy-to-use multi-platform LLM chatbot and development framework" readme = "README.md" -requires-python = ">=3.12" +requires-python = ">=3.11" keywords = ["Astrbot", "Astrbot Module", "Astrbot Plugin"]