chore: bump version to 2026.1.0 and write changelog

This commit is contained in:
2026-05-16 17:40:42 +08:00
parent 8e88d6f759
commit 3363b9161d
4 changed files with 58 additions and 3 deletions
+2 -2
View File
@@ -73,7 +73,7 @@ export const app = new Elysia({ prefix: "/api" })
documentation: {
info: {
title: "DeckyVault API",
version: "2026.0.101",
version: "2026.1.0",
description:
"API for DeckyVault — Steam Deck game compatibility, performance reports, and community features.",
},
@@ -214,7 +214,7 @@ export const app = new Elysia({ prefix: "/api" })
.use(rateLimit("default"))
.get("/", () => ({
name: "DeckyVault API",
version: "2026.0.101",
version: "2026.1.0",
}))
export type App = typeof app