From 71f189ba047ee6976ed71a7343409f46017109cd Mon Sep 17 00:00:00 2001 From: vasilito Date: Sun, 5 Jul 2026 09:16:12 +0300 Subject: [PATCH] version: use +rb0.2.5 build metadata instead of -rb0.2.5 pre-release Semver pre-release suffix (-rb0.2.5) breaks Cargo's [patch.crates-io] matching for transitive deps. Build metadata (+rb0.2.5) is semver- compatible: ^0.9.0 matches 0.9.0+rb0.2.5, patch redirection works, and the Red Bear suffix is still visible in the version string. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 5b75101f48..87f27db855 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ members = [".", "rmm"] [package] name = "kernel" -version = "0.5.12-rb0.2.5" +version = "0.5.12+rb0.2.5" authors = ["Jeremy Soller ", "vasilito "] build = "build.rs" edition = "2024"