Compare commits

..

2 Commits

Author SHA1 Message Date
b8eb97e8e2 Bump version: 1.2.19 → 1.2.20
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 1m38s
2025-07-18 18:03:48 +01:00
14490bd7d2 run at 10am 2025-07-18 18:03:43 +01:00
3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
[tool.bumpversion]
current_version = "1.2.19"
current_version = "1.2.20"
commit = true
tag = true
tag_name = "{new_version}"

View File

@ -1 +1 @@
1.2.19
1.2.20

View File

@ -22,7 +22,7 @@ def create_app():
# Schedule the daily account check
scheduler = BackgroundScheduler()
# Pass the app instance to the job
scheduler.add_job(func=lambda: send_expiry_notifications(app), trigger="interval", days=1)
scheduler.add_job(func=lambda: send_expiry_notifications(app), trigger="cron", hour=10, minute=0)
scheduler.start()
# Register blueprints