chore: bump schema version to 2 for v0.4.0 balance pass
Security Scan and Upload / Security & DefectDojo Upload (push) Successful in 1m9s
CI / Lint, Build & Test (push) Successful in 1m11s

This commit is contained in:
2026-03-31 20:06:13 -07:00
committed by Naomi Carrigan
parent 1408e067b7
commit 133c81fefe
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -8,4 +8,4 @@
/**
* The current game state schema version. Bump this whenever a breaking change is made to GameState.
*/
export const currentSchemaVersion = 1;
export const currentSchemaVersion = 2;
+1 -1
View File
@@ -24,7 +24,7 @@ vi.mock("../../src/services/discord.js", () => ({
}));
const DISCORD_ID = "test_discord_id";
const CURRENT_SCHEMA_VERSION = 1;
const CURRENT_SCHEMA_VERSION = 2;
const makeState = (overrides: Partial<GameState> = {}): GameState => ({
player: { discordId: DISCORD_ID, username: "u", discriminator: "0", avatar: null, totalGoldEarned: 0, totalClicks: 0, characterName: "T" },