From e604868baf05bbcc7615b3fef4523c5055db6b4c Mon Sep 17 00:00:00 2001 From: Red Bear OS 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 5ec6c7f64c..e3e0acc46b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "redox_installer" -version = "0.2.42-rb0.2.5" +version = "0.2.42+rb0.2.5" description = "A Redox filesystem builder" license = "MIT" authors = ["Jeremy Soller ", "vasilito "]