From 2cb255b538bb3c658d043155a2f4a84a64464a1a Mon Sep 17 00:00:00 2001 From: Esa Kataja Date: Fri, 16 May 2025 14:36:22 +0300 Subject: [PATCH] 1.0rc6 release: Add user password and avatar change functionality --- CHANGES.md | 15 ++++++--------- README.md | 2 +- docker-compose.yml | 2 +- pyproject.toml | 2 +- src/app.py | 2 +- uv.lock | 2 +- 6 files changed, 11 insertions(+), 14 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 8d09f07..aeb3c7b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,18 +1,15 @@ # Eurovision 25 Backend Changelog +## 1.0rc6 (2025-05-16) + +### Features +- Added ability for users to change their password and avatar image + ## 1.0rc5 (2025-05-16) -### Features -- Added vote weighting system for jury scores -- Improved performance for results calculation - -### Fixes -- Fixed inconsistent sorting in results view -- Fixed avatar upload size validation - ### Changes - Updated dependencies to latest versions -- Enhanced API documentation +- Changed API documentation for security reasons ## 1.0rc4 (2025-05-16) diff --git a/README.md b/README.md index fc63f1f..deefb76 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Eurovision 25 Homereview Backend -**Version: 1.0rc5** +**Version: 1.0rc6** ## Description diff --git a/docker-compose.yml b/docker-compose.yml index 410c862..b6379a1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,7 +8,7 @@ services: build: context: . dockerfile: Dockerfile - image: eurovision-25-backend:1.0rc5 + image: eurovision-25-backend:1.0rc6 ports: - "8000:8000" volumes: diff --git a/pyproject.toml b/pyproject.toml index 8f9e6b2..69f3255 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "Eurovision-25-backend" -version = "1.0rc5" +version = "1.0rc6" description = "Backend for Eurovision 25" readme = "README.md" requires-python = ">=3.12" diff --git a/src/app.py b/src/app.py index 089dac5..fdee02c 100644 --- a/src/app.py +++ b/src/app.py @@ -12,7 +12,7 @@ from lib.db import init_db app = FastAPI( title="Eurovision 25 Homereview API", description="Backend API for Eurovision 25 Homereview application", - version="1.0rc5", + version="1.0rc6", openapi_url="/sec_schema.json", docs_url="/docut", redoc_url=None, diff --git a/uv.lock b/uv.lock index 8ebe184..c2b3196 100644 --- a/uv.lock +++ b/uv.lock @@ -131,7 +131,7 @@ wheels = [ [[package]] name = "eurovision-25-backend" -version = "1.0rc5" +version = "1.0rc6" source = { virtual = "." } dependencies = [ { name = "aiofiles" },