bump: version 0.1.5

This commit is contained in:
2026-04-23 13:58:11 +08:00
parent 3f41155d40
commit 3e9fbacd94
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "sistem-desa-mandiri",
"version": "0.1.4",
"version": "0.1.5",
"private": true,
"scripts": {
"dev": "next dev --experimental-https",

View File

@@ -6,6 +6,6 @@ export async function GET(request: Request) {
return NextResponse.json({ success: true, version, tahap: "beta", update: "-perbaikan fitur diskusi dan perbaikan tampilan mobile" }, { status: 200 });
} catch (error) {
console.error(error);
return NextResponse.json({ success: false, version: "Gagal mendapatkan version, coba lagi nanti (error: 500)", reason: (error as Error).message, }, { status: 500 });
return NextResponse.json({ success: false, version: "0.1.5", reason: (error as Error).message, }, { status: 500 });
}
}