From 871d1d9982bbba68a8bc117f4d7f3b26398adfcd Mon Sep 17 00:00:00 2001 From: Alexandre Moore Date: Sun, 19 Jul 2026 13:54:47 +0200 Subject: [PATCH] Bump version to 2.2.0 --- backend/pyproject.toml | 2 +- backend/src/core/config.py | 2 +- frontend/package-lock.json | 4 ++-- frontend/package.json | 2 +- frontend/src/config/env.ts | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 4eaf233..a27280b 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -20,7 +20,7 @@ package-dir = {"" = "src"} [project] name = "steamselfgifter-backend" -version = "2.1.0" +version = "2.2.0" description = "Automated SteamGifts bot backend with REST API" readme = "README.md" requires-python = ">=3.14" diff --git a/backend/src/core/config.py b/backend/src/core/config.py index 6127924..4dd6ed7 100644 --- a/backend/src/core/config.py +++ b/backend/src/core/config.py @@ -16,7 +16,7 @@ class Settings(BaseSettings): # Application app_name: str = "SteamSelfGifter" - version: str = "2.1.0" + version: str = "2.2.0" environment: Literal["development", "production"] = "development" debug: bool = True diff --git a/frontend/package-lock.json b/frontend/package-lock.json index eda9ea2..c4cb9e3 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "steamselfgifter-frontend", - "version": "2.1.0", + "version": "2.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "steamselfgifter-frontend", - "version": "2.1.0", + "version": "2.2.0", "dependencies": { "@tanstack/react-query": "^5.101.2", "clsx": "^2.1.1", diff --git a/frontend/package.json b/frontend/package.json index 77b0393..a3e1b35 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,7 +1,7 @@ { "name": "steamselfgifter-frontend", "private": true, - "version": "2.1.0", + "version": "2.2.0", "type": "module", "scripts": { "dev": "vite", diff --git a/frontend/src/config/env.ts b/frontend/src/config/env.ts index e948bae..1eca47f 100644 --- a/frontend/src/config/env.ts +++ b/frontend/src/config/env.ts @@ -11,5 +11,5 @@ export const config = { // App info appName: 'SteamSelfGifter', - version: '2.1.0', + version: '2.2.0', } as const;