Skip to main content

max / makeover-build

0.23.1: semicolon on a unit-returning call in a test Clippy's semicolon_if_nothing_returned, inside the catch_unwind closure added by 0.23.0. No behaviour change.
Co-Authored-By
Claude Opus 5 (1M context) <noreply@anthropic.com>
Author: Max Johnson <me@maxj.phd> · 2026-08-12 01:45 UTC
Commit: 04cf604bfb141dbd4b87e4da020fa5e5b80d0cd7
Parent: e7535ee
2 files changed, +2 insertions, -2 deletions
M Cargo.toml +1 -1
@@ -1,6 +1,6 @@
1 1 [package]
2 2 name = "makeover-build"
3 - version = "0.23.0"
3 + version = "0.23.1"
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"
M src/drift.rs +1 -1
@@ -922,7 +922,7 @@
922 922 let dir = scratch("vocab-allowed-stale");
923 923 write(&dir, "css/styles.css", ".card { padding: 2px; }\n");
924 924 let err = std::panic::catch_unwind(|| {
925 - check_vocabulary(&dir, &Emit::default(), &[], &[("card", "box-shadow")])
925 + check_vocabulary(&dir, &Emit::default(), &[], &[("card", "box-shadow")]);
926 926 })
927 927 .unwrap_err();
928 928 let msg = err