mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-07-28 01:01:00 +00:00
Make version constants u32
This commit is contained in:
@ -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,
|
||||
),
|
||||
)?;
|
||||
}
|
||||
|
Reference in New Issue
Block a user