diff --git a/README.md b/README.md index e6fb8bc..643d648 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ | **security-alert-center** | Сервер SAC (Ubuntu 24.04) | | [seaca](https://git.kalinamall.ru/PapaTramp/seaca) | Android-клиент | -**Версия:** `0.5.17` · **Деплой:** `sudo /opt/sac-deploy.sh` +**Версия:** `0.5.18` · **Деплой:** `sudo /opt/sac-deploy.sh` ## Возможности diff --git a/README_en.md b/README_en.md index e993ad4..d96c0c6 100644 --- a/README_en.md +++ b/README_en.md @@ -13,7 +13,7 @@ Self-hosted hub for security events from Linux and Windows agents: ingest, corre | **security-alert-center** | SAC server (Ubuntu 24.04) | | [seaca](https://git.kalinamall.ru/PapaTramp/seaca) | Android client | -**Version:** `0.5.17` · **Deploy:** `sudo /opt/sac-deploy.sh` +**Version:** `0.5.18` · **Deploy:** `sudo /opt/sac-deploy.sh` ## Features diff --git a/backend/app/version.py b/backend/app/version.py index 79933b3..1251c30 100644 --- a/backend/app/version.py +++ b/backend/app/version.py @@ -1,5 +1,5 @@ """Единый источник версии SAC (API, health, логи, OpenAPI).""" APP_NAME = "Security Alert Center" -APP_VERSION = "0.5.17" +APP_VERSION = "0.5.18" APP_VERSION_LABEL = f"{APP_NAME} v.{APP_VERSION}" diff --git a/frontend/src/version.ts b/frontend/src/version.ts index 4168b16..1492ac5 100644 --- a/frontend/src/version.ts +++ b/frontend/src/version.ts @@ -1,4 +1,4 @@ /** Fallback до загрузки /health; при релизе держите в sync с backend/app/version.py */ export const APP_NAME = "Security Alert Center"; -export const APP_VERSION = "0.5.17"; +export const APP_VERSION = "0.5.18"; export const APP_VERSION_LABEL = `${APP_NAME} v.${APP_VERSION}`;