chore: track version in VERSION file and increment to 1.0.2

This commit is contained in:
jeremy bayse
2026-03-29 11:52:41 +02:00
parent d0ecfa3e96
commit 7ece2036c1
2 changed files with 2 additions and 1 deletions

View File

@@ -123,6 +123,6 @@ return [
'store' => env('APP_MAINTENANCE_STORE', 'database'),
],
'version' => env('APP_VERSION', '1.0.0'),
'version' => trim(file_exists(base_path('VERSION')) ? file_get_contents(base_path('VERSION')) : '1.0.0'),
];