From cbfd24146dc21abdfff81c33db0b757154375d8d Mon Sep 17 00:00:00 2001 From: Radiquum Date: Sat, 6 Sep 2025 00:28:21 +0500 Subject: [PATCH] chore/api-prox: set version to EPOCH.MINOR.PATCH --- api-prox/src/config.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/api-prox/src/config.ts b/api-prox/src/config.ts index 921037e..29422ee 100644 --- a/api-prox/src/config.ts +++ b/api-prox/src/config.ts @@ -1 +1,3 @@ -export const appVersion = "0.0.0"; \ No newline at end of file +// Epoch Semantic Versioning - https://antfu.me/posts/epoch-semver +// {EPOCH * 1000 + MAJOR}.MINOR.PATCH +export const appVersion = "0000.0.0";