From f29cbc3dfecf81d5bf57eef6274a92ecd3f61ad9 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 b4b7ade58c..927ac840a8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "redoxfs" description = "The Redox Filesystem" repository = "https://gitlab.redox-os.org/redox-os/redoxfs" -version = "0.9.1" +version = "0.9.1+rb0.2.5" license-file = "LICENSE" readme = "README.md" authors = ["Jeremy Soller "]