From 9867ad296c559bfb08ccc098c5968e568eaf60f0 Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Mon, 19 Aug 2024 17:33:56 +0500 Subject: [PATCH] chore: bump version --- app/api/version/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/version/route.ts b/app/api/version/route.ts index 12dcc7a..945dd31 100644 --- a/app/api/version/route.ts +++ b/app/api/version/route.ts @@ -5,7 +5,7 @@ import * as path from "node:path"; export async function GET() { const directoryPath = path.join(process.cwd(), "public/changelog"); const files = fs.readdirSync(directoryPath); - const current = "3.0.1"; + const current = "3.1.0"; const previous = []; files.forEach((file) => { if (file != `${current}.md`) {