chore: bump version to 2026.2.2, add changelog and update news (Task 7)

This commit is contained in:
2026-05-28 00:18:20 +08:00
parent 980e16bb97
commit 99d6572a3d
6 changed files with 88 additions and 4 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ describe("API version", () => {
it("matches package.json version", () => {
const pkg = require("../../../package.json")
const expectedVersion = pkg.version
expect(expectedVersion).toBe("2026.2.1")
expect(expectedVersion).toBe("2026.2.2")
})
})
+2 -2
View File
@@ -79,7 +79,7 @@ export const app = new Elysia({ prefix: "/api" })
documentation: {
info: {
title: "DeckyVault API",
version: "2026.2.1",
version: "2026.2.2",
description:
"API for DeckyVault — Steam Deck game compatibility, performance reports, and community features.",
},
@@ -275,7 +275,7 @@ export const app = new Elysia({ prefix: "/api" })
.use(rateLimit("default"))
.get("/", () => ({
name: "DeckyVault API",
version: "2026.2.1",
version: "2026.2.2",
}))
export type App = typeof app