Skip to main content

max / makeover-tui

Release 0.5.0 on makeover-layout 0.6.0 Sibling of makeover-immediate 0.4.0, and the same fix: the pin was caret ^0.4.0, so the renderer could never see 0.5 or 0.6 and sat two breaking releases behind the description it renders. Compiles unchanged. Both releases only widened enums to non_exhaustive, and this crate already answers an unknown fill with None by design (c46e5aa): a terminal cell has one background, so a surface set back by colour alone is not something it can express, and the chosen tab is drawn forward instead. src/lib.rs:195 says so. Minor rather than patch: the crate does `pub use makeover_layout`, so the dependency's version is quite literally its public API.
Co-Authored-By
Claude Opus 5 (1M context) <noreply@anthropic.com>
Author: Max Johnson <me@maxj.phd> · 2026-07-31 17:45 UTC
Signed with PGP, not checked
Commit: 546ffd36c8e3f187b790fc77c71a522f109913b4
Parent: 287554f
1 file changed, +2 insertions, -2 deletions
M Cargo.toml +2 -2
@@ -1,6 +1,6 @@
1 1 [package]
2 2 name = "makeover-tui"
3 - version = "0.4.1"
3 + version = "0.5.0"
4 4 edition = "2024"
5 5 description = "The terminal renderer for makeover-layout, on ratatui. Colour stops being the constraint above 256 entries; geometry never does, because an edge occupies a whole cell on every side."
6 6 license = "MIT"
@@ -8,7 +8,7 @@
8 8
9 9 [dependencies]
10 10 ratatui = { version = "0.30", default-features = false }
11 - makeover-layout = "0.4.0"
11 + makeover-layout = "0.6.0"
12 12
13 13 [lints.rust]
14 14 unused = "warn"