chore(versioning): nvm, this is 3.3 now

This commit is contained in:
Xoconoch
2025-08-23 12:39:38 -06:00
parent c8f486c26f
commit a4bc9780e0
5 changed files with 13 additions and 13 deletions

View File

@@ -378,10 +378,10 @@ def run_migrations_if_needed():
with _safe_connect(HISTORY_DB) as history_conn:
if history_conn and not _is_history_at_least_3_2_0(history_conn):
logger.error(
"Instance is not at schema version 3.2.0. Please upgrade to 3.2.0 before applying 3.2.2."
"Instance is not at schema version 3.2.0. Please upgrade to 3.2.0 before applying 3.3.0."
)
raise RuntimeError(
"Instance is not at schema version 3.2.0. Please upgrade to 3.2.0 before applying 3.2.2."
"Instance is not at schema version 3.2.0. Please upgrade to 3.2.0 before applying 3.3.0."
)
# Watch playlists DB
@@ -413,4 +413,4 @@ def run_migrations_if_needed():
else:
_ensure_creds_filesystem()
log_noop_migration_detected()
logger.info("Database migrations check completed (3.2.0 -> 3.2.2 path)")
logger.info("Database migrations check completed (3.2.0 -> 3.3.0 path)")