2 Commits
Author SHA1 Message Date
Esa Kataja c404582c03 Change default doc path for security reasons 2025-05-16 12:54:31 +03:00
Esa Kataja e1c3f6e7c5 Add version update docs 2025-05-16 12:54:05 +03:00
2 changed files with 14 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
# Version update
1. Update version in `pyproject.toml`
2. Update version in `uv.lock`
3. Update version in `src/app.py`
4. Update `CHANGES.md`. Take info from git log
5. Update `README.md`
6. Commit changes
7. Tag release
8. Push changes
+4 -1
View File
@@ -12,7 +12,10 @@ from lib.db import init_db
app = FastAPI(
title="Eurovision 25 Homereview API",
description="Backend API for Eurovision 25 Homereview application",
version="1.0rc3",
version="1.0rc4",
openapi_url=None,
docs_url="/docut",
redoc_url="/redocut",
)