Prepare 1.0rc2 release

This commit is contained in:
Esa Kataja
2025-05-10 14:33:35 +03:00
parent 39da976ef3
commit 1d13f1469e
3 changed files with 21 additions and 2 deletions
+19
View File
@@ -0,0 +1,19 @@
# Eurovision 25 Backend Changelog
## 1.0rc2 (2025-05-10)
### Changes
- Updated application version to 1.0rc2
- Added more comprehensive logging throughout the application
## 1.0rc1 (Previous Release)
### Features
- Initial release candidate
- Eurovision 25 Homereview API implementation
- Authentication and authorization system
- User management features
- Song management
- Review system
- Results calculation
+1 -1
View File
@@ -1,6 +1,6 @@
[project]
name = "Eurovision-25-backend"
version = "1.0rc1"
version = "1.0rc2"
description = "Backend for Eurovision 25"
readme = "README.md"
requires-python = ">=3.12"
+1 -1
View File
@@ -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.0rc1",
version="1.0rc2",
)
# Add CORS middleware