diff --git a/crates/index-scheduler/src/upgrade/mod.rs b/crates/index-scheduler/src/upgrade/mod.rs index 1743c3940..4ca594936 100644 --- a/crates/index-scheduler/src/upgrade/mod.rs +++ b/crates/index-scheduler/src/upgrade/mod.rs @@ -42,6 +42,7 @@ pub fn upgrade_index_scheduler( (1, 16, _) => 0, (1, 17, _) => 0, (1, 18, _) => 0, + (1, 19, _) => 0, (major, minor, patch) => { if major > current_major || (major == current_major && minor > current_minor) diff --git a/crates/milli/src/update/upgrade/mod.rs b/crates/milli/src/update/upgrade/mod.rs index 718dd41f7..01ad677c7 100644 --- a/crates/milli/src/update/upgrade/mod.rs +++ b/crates/milli/src/update/upgrade/mod.rs @@ -64,6 +64,7 @@ const fn start(from: (u32, u32, u32)) -> Option { (1, 16, _) => function_index!(7), (1, 17, _) => function_index!(7), (1, 18, _) => function_index!(7), + (1, 19, _) => function_index!(7), // We deliberately don't add a placeholder with (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH) here to force manually // considering dumpless upgrade. (_major, _minor, _patch) => return None,