diff --git a/docs/service-api-openapi.json b/docs/service-api-openapi.json index 1e81adee..aab3758b 100644 --- a/docs/service-api-openapi.json +++ b/docs/service-api-openapi.json @@ -3,7 +3,7 @@ "info": { "title": "LangBot API with API Key Authentication", "description": "LangBot external service API documentation. These endpoints support API Key authentication \nfor external systems to programmatically access LangBot resources.\n\n**Authentication Methods:**\n- User Token (via `Authorization: Bearer `)\n- API Key (via `X-API-Key: ` or `Authorization: Bearer `)\n\nAll endpoints documented here accept BOTH authentication methods.\n", - "version": "4.4.1", + "version": "4.5.0", "contact": { "name": "LangBot", "url": "https://langbot.app" diff --git a/pkg/utils/constants.py b/pkg/utils/constants.py index 56fa2e4d..c225ed82 100644 --- a/pkg/utils/constants.py +++ b/pkg/utils/constants.py @@ -1,4 +1,4 @@ -semantic_version = 'v4.4.1' +semantic_version = 'v4.5.0' required_database_version = 11 """Tag the version of the database schema, used to check if the database needs to be migrated""" diff --git a/pyproject.toml b/pyproject.toml index cdb07dad..6073ed28 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "langbot" -version = "4.4.1" +version = "4.5.0" description = "Easy-to-use global IM bot platform designed for LLM era" readme = "README.md" requires-python = ">=3.10.1,<4.0"