From f0cfa390bd098035a59c847b40031ef2db98af46 Mon Sep 17 00:00:00 2001 From: Rudraksh Joshi Date: Mon, 8 Jun 2026 11:50:50 +0530 Subject: [PATCH 1/2] fix cranelift patch rejection by relaxing SemVer requirements --- .github/workflows/cranelift-release-branch.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cranelift-release-branch.yml b/.github/workflows/cranelift-release-branch.yml index 5cfdc3e8f2..e5a1ae1dfa 100644 --- a/.github/workflows/cranelift-release-branch.yml +++ b/.github/workflows/cranelift-release-branch.yml @@ -38,6 +38,8 @@ jobs: - name: Patch Cargo.toml to use release branch Cranelift run: | + sed -i 's/"0\.131\.0"/"*"/g' Cargo.toml + cat >>Cargo.toml < Date: Mon, 8 Jun 2026 12:21:36 +0530 Subject: [PATCH 2/2] fix cranelift patch rejection by relaxing version hardcoding --- .github/workflows/cranelift-release-branch.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cranelift-release-branch.yml b/.github/workflows/cranelift-release-branch.yml index e5a1ae1dfa..44515f7fb2 100644 --- a/.github/workflows/cranelift-release-branch.yml +++ b/.github/workflows/cranelift-release-branch.yml @@ -38,7 +38,7 @@ jobs: - name: Patch Cargo.toml to use release branch Cranelift run: | - sed -i 's/"0\.131\.0"/"*"/g' Cargo.toml + sed -i -E 's/"0\.13[0-9]\.[0-9]+"/"*"/g' Cargo.toml cat >>Cargo.toml <