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

@ -262,9 +262,9 @@ impl Index {
this.put_version(
&mut wtxn,
(
constants::VERSION_MAJOR.parse().unwrap(),
constants::VERSION_MINOR.parse().unwrap(),
constants::VERSION_PATCH.parse().unwrap(),
constants::VERSION_MAJOR,
constants::VERSION_MINOR,
constants::VERSION_PATCH,
),
)?;
}