Prepare 1.0rc3 release

This commit is contained in:
Esa Kataja
2025-05-16 08:11:54 +03:00
parent 6c512c78aa
commit b6a1d4aeaf
2 changed files with 28 additions and 5 deletions
+27 -4
View File
@@ -1,19 +1,42 @@
# Eurovision 25 Backend Changelog # Eurovision 25 Backend Changelog
## 1.0rc3 (2025-05-16)
### Features
- Added contest table and routes
- Added result endpoints with artist information
- Created result views in database schema
- Added avatar images for users
### Fixes
- Fixed data directory copied from dev environment causing build errors
- Fixed error when no reviews exist
- Fixed container not starting if data directory did not exist
- Fixed review PUT failing when no previous review exists
### Changes
- Updated application version to 1.0rc3
- Merged changelog files for better version tracking
- Added more comprehensive logging
- Added gitignore entries
## 1.0rc2 (2025-05-10) ## 1.0rc2 (2025-05-10)
### Changes ### Changes
- Updated application version to 1.0rc2 - Updated application version to 1.0rc2
- Added more comprehensive logging throughout the application - Added more comprehensive logging throughout the application
## 1.0rc1 (2025-05-01)
## 1.0rc1 (Previous Release)
### Features ### Features
- Initial release candidate - Initial release candidate
- Eurovision 25 Homereview API implementation - Eurovision 25 Homereview API implementation
- Authentication and authorization system - Authentication and authorization system
- User management features - User management features
- Song management - Song management and reviews
- Review system - Review system
- Results calculation - Results calculation and display
- Admin functionality
- Static file serving for avatars and country flags
The application is feature complete, but may still contain bugs that will be addressed before the final 1.0.0 release.
+1 -1
View File
@@ -12,7 +12,7 @@ from lib.db import init_db
app = FastAPI( app = FastAPI(
title="Eurovision 25 Homereview API", title="Eurovision 25 Homereview API",
description="Backend API for Eurovision 25 Homereview application", description="Backend API for Eurovision 25 Homereview application",
version="1.0rc2", version="1.0rc3",
) )