release: open 0.3.2 and sync Cat 1/Cat 2 version labels
New release branch per the release-branch model (operator decision; local/AGENTS.md reserves branch creation to the operator). sync-versions.sh, driven by bump-release.sh, rewrites: - Cat 1 in-house crates -> version = 0.3.2 - Cat 2 upstream forks -> <upstream-tag>+rb0.3.2 Labels only; no fork source was rebased in this commit. bump-release.sh reports these forks as having newer upstream tags, to be taken next: relibc 0.2.5 -> 0.6.0 syscall 0.9.0 -> 0.9.1 libredox 0.1.18 -> 0.1.19 redoxfs and redox-scheme are already current. kernel, bootloader and installer are 'diverged' in the fork map and stay report-only (manual rebase); bootloader additionally has no merge-base with upstream.
This commit is contained in:
+1
-1
@@ -4,7 +4,7 @@ name = "redbear_cookbook"
|
||||
# `local/scripts/sync-versions.sh` updates this field on every branch bump,
|
||||
# so the cookbook binary always reports the correct OS version it builds.
|
||||
# Branch 0.3.1 as of 2026-07-12.
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
authors = ["Jeremy Soller <jackpot51@gmail.com>"]
|
||||
edition = "2024"
|
||||
default-run = "repo"
|
||||
|
||||
@@ -7,7 +7,7 @@ members = [
|
||||
resolver = "3"
|
||||
|
||||
[workspace.package]
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2024"
|
||||
license = "MIT"
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ members = [
|
||||
resolver = "3"
|
||||
|
||||
[workspace.package]
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2024"
|
||||
license = "MIT"
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "ehcid"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2024"
|
||||
description = "EHCI USB 2.0 host controller driver for Red Bear OS"
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "linux-kpi"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2021"
|
||||
description = "Linux Kernel API compatibility layer for Redox OS (LinuxKPI-style)"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "ohcid"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2024"
|
||||
description = "OHCI USB 1.1 host controller driver for Red Bear OS"
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-btusb"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "Bluetooth USB driver for Red Bear OS"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-hid-core"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
edition = "2024"
|
||||
authors = ["Red Bear OS Contributors"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-iwlwifi"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "Intel Wi-Fi driver for Red Bear OS"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redox-driver-acpi"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2024"
|
||||
description = "ACPI bus backend for redox-driver-core (enumerates devices from AML namespace)"
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redox-driver-core"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2024"
|
||||
description = "Core device-model traits and orchestration for Red Bear drivers"
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redox-driver-pci"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2024"
|
||||
description = "PCI bus backend for redox-driver-core"
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redox-driver-sys"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2021"
|
||||
description = "Safe Rust wrappers for Redox OS scheme-based hardware access"
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uhcid"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2024"
|
||||
description = "UHCI USB 1.1 host controller driver for Red Bear OS"
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "usb-core"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2024"
|
||||
description = "Shared USB types and primitives for Red Bear host controller drivers"
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "virtio-inputd"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2024"
|
||||
description = "virtio-input daemon v6.0 2026: reads virtio-input PCI events and writes Linux evdev events to /scheme/input-evdev"
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redox-drm"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2021"
|
||||
description = "DRM scheme daemon for Redox OS — provides GPU modesetting and buffer management"
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "harfbuzz-wasm"
|
||||
version = "0.1.0"
|
||||
version = "0.3.2"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "hello-wasm"
|
||||
version = "0.1.0"
|
||||
version = "0.3.2"
|
||||
edition = "2021"
|
||||
|
||||
[lib]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pam"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2021"
|
||||
description = "PAM compatibility library for Red Bear OS — proxies authentication to redbear-authd over its Unix socket protocol. v6.0 2026"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "coretempd"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2024"
|
||||
|
||||
[[bin]]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "cpufreqd"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2024"
|
||||
|
||||
[[bin]]
|
||||
|
||||
@@ -10,7 +10,7 @@ default-members = [
|
||||
]
|
||||
|
||||
[workspace.package]
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "Red Bear OS Package Builder"
|
||||
license = "MIT"
|
||||
authors = ["Red Bear OS Contributors"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "devfsd"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2024"
|
||||
|
||||
[[bin]]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "diskd"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2024"
|
||||
description = "Red Bear OS disk aggregator scheme daemon — exposes a single, listable namespace over all underlying disk.* schemes (disk.live, disk.sata*, disk.virtio*, disk.nvme*, disk.usb*, disk.ide*)"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "driver-manager"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2024"
|
||||
description = "Device driver manager with deferred and async probing"
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "driver-params"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2024"
|
||||
|
||||
[[bin]]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "evdevd"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "firmware-loader"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "hwrngd"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2024"
|
||||
|
||||
[[bin]]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "iommu"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "numad"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2021"
|
||||
description = "Red Bear OS NUMA topology daemon — parses ACPI SRAT/SLIT and feeds kernel NUMA hints"
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-accessibility"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "Accessibility daemon for Red Bear OS"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-authd"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "Authentication daemon for Red Bear OS"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-btctl"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "Bluetooth control utility for Red Bear OS"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-dnsd"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "DNS resolver daemon for Red Bear OS"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-greeter"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "Login greeter for Red Bear OS"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-hwutils"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "Hardware utility tools for Red Bear OS"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-ime"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "Input method editor framework for Red Bear OS"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-info"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "System information tool for Red Bear OS"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-keymapd"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "Keyboard keymap daemon for Red Bear OS"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-login-protocol"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "Login protocol library for Red Bear OS"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-mtr"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "MTR network diagnostic tool for Red Bear OS"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-netctl-console"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "Network control console UI for Red Bear OS"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-netctl"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "Network control daemon for Red Bear OS"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-netstat"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "Network statistics tool for Red Bear OS"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-nmap"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "Network port scanner for Red Bear OS"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-notifications"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "Desktop notification daemon for Red Bear OS"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-passwd"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "Password management utility for Red Bear OS"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-polkit"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "PolicyKit authorization daemon for Red Bear OS"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-power"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "Power management TUI for Red Bear OS"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-session-launch"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "Desktop session launcher for Red Bear OS"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-sessiond"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "D-Bus session broker for Red Bear OS"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-statusnotifierwatcher"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "Status notifier watcher for Red Bear OS system tray"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-traceroute"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "Traceroute network diagnostic tool for Red Bear OS"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-udisks"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "Disk management daemon for Red Bear OS"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-upower"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "Power management daemon for Red Bear OS"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-wifictl"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "Wi-Fi control utility for Red Bear OS"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "thermald"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2024"
|
||||
|
||||
[[bin]]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "udev-shim"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redox-drm-prime-test"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2021"
|
||||
description = "PRIME DMA-BUF test for redox-drm scheme"
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-tui-theme"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2024"
|
||||
description = "Default TUI skin palette for Red Bear OS — single source of truth for the Red Bear brand colours used by every TUI application"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "redbear-compositor"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
description = "Wayland compositor for Red Bear OS"
|
||||
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
|
||||
license = "MIT"
|
||||
|
||||
@@ -3,7 +3,7 @@ name = "redox-scheme"
|
||||
authors = ["4lDO2 <4lDO2@protonmail.com>", "vasilito <adminpupkin@gmail.com>"]
|
||||
# Local fork: upstream 0.11.2 + Red Bear +rb0.3.0 version policy.
|
||||
# See local/AGENTS.md § "Category 2 — Local forks of upstream packages".
|
||||
version = "0.11.2+rb0.3.1"
|
||||
version = "0.11.2+rb0.3.2"
|
||||
edition = "2024"
|
||||
license = "MIT"
|
||||
exclude = ["target"]
|
||||
|
||||
Reference in New Issue
Block a user