release: v0.8.57 — sleep-resume turns, docker fix, one-command release prep, changelog diet

This commit is contained in:
Hunter B
2026-06-10 00:02:51 -07:00
parent f9c9764265
commit b23067bacd
22 changed files with 186 additions and 150 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ old_re = re.escape(old)
def bump(path, pattern, repl, minimum):
p = pathlib.Path(path)
text = p.read_text()
out, n = re.subn(pattern, repl, text)
out, n = re.subn(pattern, repl, text, flags=re.MULTILINE)
if n < minimum:
sys.exit(f"error: expected >= {minimum} replacement(s) in {path}, made {n}")
p.write_text(out)