Make version constants u32

This commit is contained in:
Louis Dureuil
2025-04-24 14:17:12 +02:00
parent 29b947ee43
commit 49add50cb3
12 changed files with 46 additions and 70 deletions

View File

@ -104,10 +104,6 @@ impl UpgradeIndexScheduler for ToCurrentNoOp {
}
fn target_version(&self) -> (u32, u32, u32) {
(
VERSION_MAJOR.parse().unwrap(),
VERSION_MINOR.parse().unwrap(),
VERSION_PATCH.parse().unwrap(),
)
(VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH)
}
}