Skip to main content

max / makeover-build

0.20.0: take makeover-webview 0.25.0, and stop being a release behind The pin said 0.23.0 while webview had shipped 0.24.0, so every consumer materialising a stylesheet through this crate got one without the figure-change rules, and now without the cell parts. A pin that is not maintained is a pin that silently holds a version back, which is the opposite of what exact-patch pinning is for. 0.25.0 brings CellPart's classes: .cell-value takes the content colour and .cell-tokens, .cell-actions and .cell-link do not, so a control in a table cell stops being painted as text in every frontend built through here.
Co-Authored-By
Claude Opus 5 (1M context) <noreply@anthropic.com>
Author: Max Johnson <me@maxj.phd> · 2026-08-11 18:28 UTC
Signed with PGP, not checked
Commit: 894aad3b123423d2bfe6c51dcecea27d0611f7ea
Parent: a4b7fe7
1 file changed, +3 insertions, -3 deletions
M Cargo.toml +3 -3
@@ -1,6 +1,6 @@
1 1 [package]
2 2 name = "makeover-build"
3 - version = "0.19.0"
3 + version = "0.20.0"
4 4 edition = "2024"
5 5 description = "Build-script support for the make-family design system: materialise makeover's themes and makeover-webview's stylesheet into a Tauri app's frontend, once, instead of copying the same twenty lines into every consumer's build.rs."
6 6 license = "MIT"
@@ -15,12 +15,12 @@
15 15 # naming a token nothing defines, and a custom property whose value fails to
16 16 # substitute takes the whole declaration with it rather than degrading.
17 17 makeover = "2.5"
18 - # 0.23.0 and not 0.23: the same exact-patch discipline 0.13.1 was released for.
18 + # 0.25.0 and not 0.25: the same exact-patch discipline 0.13.1 was released for.
19 19 # An earlier patch in a minor can pin an older makeover-touch, which drags a
20 20 # second makeover-geometry into the graph alongside the one below and fails to
21 21 # compile on `Density` being nominally distinct. The exact patch is what keeps
22 22 # the geometry axis single.
23 - makeover-webview = "0.23.0"
23 + makeover-webview = "0.25.0"
24 24 makeover-geometry = "0.7"
25 25
26 26 [lints.rust]