From e65daa8c3b65c8ea7f814a8787899ebd194c182b Mon Sep 17 00:00:00 2001 From: PTah Date: Wed, 10 Jun 2026 09:11:41 +1000 Subject: [PATCH] chore: sync frontend version.ts with API 0.8.3 Co-authored-by: Cursor --- README.md | 2 +- README_en.md | 2 +- backend/tests/test_health.py | 4 ++-- frontend/src/version.ts | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2327f8b..22fc94a 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ ## Статус -**Версия:** `0.8.2` +**Версия:** `0.8.3` **Стек:** FastAPI, PostgreSQL, Vue 3, JWT, SSE **Деплой:** `sudo /opt/sac-deploy.sh` (см. `deploy/sac-deploy.sh`) diff --git a/README_en.md b/README_en.md index 62797f6..57842a7 100644 --- a/README_en.md +++ b/README_en.md @@ -14,7 +14,7 @@ Self-hosted hub for collecting, storing, and displaying security events from Lin ## Status -**Version:** `0.8.2` +**Version:** `0.8.3` **Stack:** FastAPI, PostgreSQL, Vue 3, JWT, SSE **Deploy:** `sudo /opt/sac-deploy.sh` (see `deploy/sac-deploy.sh`) diff --git a/backend/tests/test_health.py b/backend/tests/test_health.py index 8352bda..19ec46a 100644 --- a/backend/tests/test_health.py +++ b/backend/tests/test_health.py @@ -4,6 +4,6 @@ from app.version import APP_NAME, APP_VERSION, APP_VERSION_LABEL def test_version_constants(): - assert APP_VERSION == "0.7.4" + assert APP_VERSION == "0.8.3" assert APP_NAME == "Security Alert Center" - assert APP_VERSION_LABEL == "Security Alert Center v.0.7.4" + assert APP_VERSION_LABEL == "Security Alert Center v.0.8.3" diff --git a/frontend/src/version.ts b/frontend/src/version.ts index 91da510..05c5446 100644 --- a/frontend/src/version.ts +++ b/frontend/src/version.ts @@ -1,3 +1,3 @@ export const APP_NAME = "Security Alert Center"; -export const APP_VERSION = "0.8.2"; +export const APP_VERSION = "0.8.3"; export const APP_VERSION_LABEL = `${APP_NAME} v.${APP_VERSION}`;