From 8dc0edb5df56a2c532ff1e208101ab1c990ebbd2 Mon Sep 17 00:00:00 2001 From: Red Bear OS Date: Sat, 4 Jul 2026 10:07:31 +0300 Subject: [PATCH] fork: bump to -rb1 version suffix Per local/AGENTS.md \xC2\xA7 "Category 2 - Local forks of upstream packages", all Cat 2 forks must use the `-rb` version convention. The `-rb1` suffix is a Cargo pre-release identifier that prevents upstream `` from silently substituting for this fork in transitive dependency resolution. - The base tag (e.g. 0.9.0 for redox_syscall) tracks upstream unchanged. - The `rb1` part records that one Red Bear patch round has been applied on top of the upstream tag. This is the initial policy enforcement pass. The branch is considered unfrozen at this point; once a freeze is declared, future `-rbN` increments will land on a frozen `0.X.Y` branch per local/AGENTS.md. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e3c67001a4..bbf5e2f03f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "redox_installer" -version = "0.2.42" +version = "0.2.42-rb1" description = "A Redox filesystem builder" license = "MIT" authors = ["Jeremy Soller "]