Skip to main content

max / makeover-layout

0.8.2: apply rustfmt to the 0.8.1 tests The 0.8.1 tag fails its own publish preflight on cargo fmt --all --check, so it never reached crates.io. Reissued rather than retagged: the tag is what bento builds from, and moving a pushed one rewrites a ref other machines may already have.
Author: Max Johnson <me@maxj.phd> · 2026-08-05 20:07 UTC
Signed with PGP, not checked
Commit: 875926faa3bb0b334795d0210027f395d91aa7e9
Parent: 1c8087e
2 files changed, +8 insertions, -2 deletions
M Cargo.toml +1 -1
@@ -1,6 +1,6 @@
1 1 [package]
2 2 name = "makeover-layout"
3 - version = "0.8.1"
3 + version = "0.8.2"
4 4 edition = "2024"
5 5 description = "The renderer-agnostic half of the make-family design system: what a thing IS, named as intents and relationships and never as values. Colour defers to makeover, spacing to makeover-geometry; what is left is composition."
6 6 license = "MIT"
M src/lib.rs +7 -1
@@ -1486,7 +1486,13 @@
1486 1486 assert_eq!(radio.kind, FieldKind::Radio);
1487 1487 assert_ne!(radio.kind, select.kind);
1488 1488 assert_eq!(radio.options, select.options);
1489 - assert_eq!(Field { kind: select.kind, ..radio }, select);
1489 + assert_eq!(
1490 + Field {
1491 + kind: select.kind,
1492 + ..radio
1493 + },
1494 + select
1495 + );
1490 1496 }
1491 1497
1492 1498 #[test]