From 550dc6dab5010c641b22e67ae4e3e13d4f4238e0 Mon Sep 17 00:00:00 2001 From: Dotan Nahum Date: Tue, 29 Oct 2024 11:58:02 +0200 Subject: [PATCH] xtask: bumping no longer needs to update migration dep --- xtask/src/bump_version.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/xtask/src/bump_version.rs b/xtask/src/bump_version.rs index c55392cd1..a4870941e 100644 --- a/xtask/src/bump_version.rs +++ b/xtask/src/bump_version.rs @@ -167,14 +167,6 @@ impl BumpVersion { for starter_project in starter_projects { Self::replace_loco_rs_version(&starter_project, replace_with)?; - - let migration_lock_file = starter_project.join("migration"); - if migration_lock_file.exists() { - Self::replace_loco_rs_version( - &migration_lock_file, - replace_migrator.unwrap_or(replace_with), - )?; - } } Ok(())