diff --git a/backend/config/version.go b/backend/config/version.go index dae56b2..f42b99c 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.2.0" +const Version = "0.2.1" var ( // GitCommit will be set by build flags or detected at runtime diff --git a/frontend/VERSION.md b/frontend/VERSION.md index 34e6c04..d0c68ac 100644 --- a/frontend/VERSION.md +++ b/frontend/VERSION.md @@ -1,6 +1,6 @@ # Frontend Version Management -## Current Version: 0.2.0 +## Current Version: 0.2.1 The frontend version is managed independently from the backend. diff --git a/frontend/package.json b/frontend/package.json index 896819a..78f3ca9 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "bamort-frontend", - "version": "0.2.0", + "version": "0.2.1", "private": true, "license": "SEE LICENSE IN LICENSE", "type": "module", diff --git a/frontend/src/version.js b/frontend/src/version.js index 4495c36..f197738 100644 --- a/frontend/src/version.js +++ b/frontend/src/version.js @@ -1,5 +1,5 @@ // Frontend version information -export const VERSION = '0.2.0' +export const VERSION = '0.2.1' // Git commit will be injected at build time or detected from env export const GIT_COMMIT = import.meta.env.VITE_GIT_COMMIT || 'unknown'