Compare commits

...

2 Commits

Author SHA1 Message Date
Cody Henthorne
a1a901fd43 Bump version to 7.60.3 2025-10-16 16:21:19 -04:00
Cody Henthorne
899013b284 Attempt to fix sqlexception in migrations. 2025-10-16 16:20:15 -04:00
4 changed files with 5 additions and 5 deletions

View File

@@ -23,8 +23,8 @@ plugins {
apply(from = "static-ips.gradle.kts")
val canonicalVersionCode = 1599
val canonicalVersionName = "7.60.2"
val currentHotfixVersion = 0
val canonicalVersionName = "7.60.3"
val currentHotfixVersion = 1
val maxHotfixVersions = 100
val keystores: Map<String, Properties?> = mapOf("debug" to loadKeystoreProperties("keystore.debug.properties"))

View File

@@ -23,7 +23,7 @@ object V293_LastResortKeyTupleTableMigration : SignalDatabaseMigration {
public_key BLOB NOT NULL,
UNIQUE(kyber_prekey_id, signed_key_id, public_key)
)
""".trimIndent()
"""
)
}
}

View File

@@ -25,7 +25,7 @@ object V294_RemoveLastResortKeyTupleColumnConstraintMigration : SignalDatabaseMi
public_key BLOB NOT NULL,
UNIQUE(kyber_prekey_id, signed_key_id, public_key)
)
""".trimIndent()
"""
)
}
}

View File

@@ -23,7 +23,7 @@ object V295_AddLastRestoreKeyTypeTableIfMissingMigration : SignalDatabaseMigrati
public_key BLOB NOT NULL,
UNIQUE(kyber_prekey_id, signed_key_id, public_key)
)
""".trimIndent()
"""
)
}
}