diff --git a/backend/app/version.py b/backend/app/version.py index 5b0e255..1ac515f 100644 --- a/backend/app/version.py +++ b/backend/app/version.py @@ -1,5 +1,5 @@ -"""Единый источник версии SAC (API, health, логи, OpenAPI).""" +"""Единый источник версии SAC (API, health, логи, OpenAPI).""" APP_NAME = "Security Alert Center" -APP_VERSION = "0.20.25" +APP_VERSION = "0.20.26" APP_VERSION_LABEL = f"{APP_NAME} v.{APP_VERSION}" diff --git a/backend/tests/test_health.py b/backend/tests/test_health.py index e305aa6..03132a7 100644 --- a/backend/tests/test_health.py +++ b/backend/tests/test_health.py @@ -1,9 +1,9 @@ -"""Version and health contract smoke tests (no DB required).""" +"""Version and health contract smoke tests (no DB required).""" from app.version import APP_NAME, APP_VERSION, APP_VERSION_LABEL def test_version_constants(): - assert APP_VERSION == "0.20.25" + assert APP_VERSION == "0.20.26" assert APP_NAME == "Security Alert Center" - assert APP_VERSION_LABEL == "Security Alert Center v.0.20.25" + assert APP_VERSION_LABEL == "Security Alert Center v.0.20.26" diff --git a/frontend/package.json b/frontend/package.json index 5239301..b55f995 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,7 +1,7 @@ -{ +{ "name": "sac-ui", "private": true, - "version": "0.11.3", + "version": "0.11.4", "type": "module", "scripts": { "dev": "vite", diff --git a/frontend/src/composables/useHostRemoteAction.ts b/frontend/src/composables/useHostRemoteAction.ts index 4053e96..5ea8856 100644 --- a/frontend/src/composables/useHostRemoteAction.ts +++ b/frontend/src/composables/useHostRemoteAction.ts @@ -1,4 +1,4 @@ -import { reactive } from "vue"; +import { reactive } from "vue"; import { ApiError, fetchHost, diff --git a/frontend/src/version.ts b/frontend/src/version.ts index 02349b5..2108478 100644 --- a/frontend/src/version.ts +++ b/frontend/src/version.ts @@ -1,4 +1,4 @@ -/** Fallback до загрузки /health; при релизе держите в sync с backend/app/version.py */ +/** Fallback до загрузки /health; при релизе держите в sync с backend/app/version.py */ export const APP_NAME = "Security Alert Center"; -export const APP_VERSION = "0.20.25"; +export const APP_VERSION = "0.20.26"; export const APP_VERSION_LABEL = `${APP_NAME} v.${APP_VERSION}`;