diff --git a/backend/config/version.go b/backend/config/version.go index 1502d74..848f3c9 100644 --- a/backend/config/version.go +++ b/backend/config/version.go @@ -1,7 +1,7 @@ package config // Version is the application version -const Version = "0.1.31" +const Version = "0.1.32" var ( // GitCommit will be set by build flags or detected at runtime diff --git a/frontend/VERSION.md b/frontend/VERSION.md index 6e8d0b8..b82e445 100644 --- a/frontend/VERSION.md +++ b/frontend/VERSION.md @@ -1,6 +1,6 @@ # Frontend Version Management -## Current Version: 0.1.22 +## Current Version: 0.1.23 The frontend version is managed independently from the backend. diff --git a/frontend/package.json b/frontend/package.json index 76307fd..4be7eda 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "bamort-frontend", - "version": "0.1.22", + "version": "0.1.23", "private": true, "type": "module", "scripts": { diff --git a/frontend/src/version.js b/frontend/src/version.js index 89add07..fde5026 100644 --- a/frontend/src/version.js +++ b/frontend/src/version.js @@ -1,5 +1,5 @@ // Frontend version information -export const VERSION = '0.1.22' +export const VERSION = '0.1.23' // Git commit will be injected at build time or detected from env export const GIT_COMMIT = import.meta.env.VITE_GIT_COMMIT || 'unknown'