Skip to main content

max / alloy_tui

12.0.0: take makeover-tui 0.41.1 makeover-tui is a public dependency: theme.rs re-exports Fidelity, Mode and ThemeError, so a consumer naming makeover-tui 0.40 itself gets a type mismatch against an alloy_tui built on 0.41. That is a break whatever the diff contains, and the diff contains no public change at all. The published 11.1.0 index entry declares makeover-tui ^0.35 while the source was written against 0.40, so anyone taking it from crates.io resolved against a makeover-tui five minors older than the code expects.
Co-Authored-By
Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session
https://claude.ai/code/session_01MptwXZ8k65v19rFmdGAyki
Author: Max Johnson <me@maxj.phd> · 2026-08-31 14:17 UTC
Signed with PGP, not checked
Commit: d8c5915d95bb436d24f5b127a5846357fe791f75
Parent: 9f2ed8d
1 file changed, +2 insertions, -2 deletions
M Cargo.toml +2 -2
@@ -1,6 +1,6 @@
1 1 [package]
2 2 name = "alloy_tui"
3 - version = "11.1.0"
3 + version = "12.0.0"
4 4 description = "Alloy design system: makeover intents rendered as ratatui Color/Style, plus themed widgets for the alloy console and siblings."
5 5 edition = "2024"
6 6 # 1.88 is ratatui 0.30.2's floor, and 0.30.2 is where `Block::shadow` lands.
@@ -30,7 +30,7 @@
30 30 # semver boundary, so a stale pin here holds the whole console on an old
31 31 # renderer rather than resolving forward. `Fidelity` and `Theme` are re-exported
32 32 # from this crate, so the renderer's public types are part of ours.
33 - makeover-tui = { version = "0.40.0", features = ["theme"] }
33 + makeover-tui = { version = "0.41.1", features = ["theme"] }
34 34
35 35 [lints.rust]
36 36 unused = "warn"