From 20c37f78df61111722bf11c7462a2c60f13c529b Mon Sep 17 00:00:00 2001 From: Frank Hunleth Date: Sun, 7 Jul 2024 17:51:35 -0400 Subject: [PATCH] v1.14.0 release --- CHANGELOG.md | 16 ++++++++++++++++ Makefile | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 39f0c4d..646eda7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## v1.14.0 + +* New features + * Support passing arguments to reboot via the `/run/reboot-param` file. This + is required to support the Raspberry Pi's tryboot feature to implement A/B + partition failback. See the README.md for info. + * In the hostname pattern, support a special printf format specifier for + trimming the left side of the serial number string. `%-0.4s` lets you use + the 4 rightmost characters of the serial number in the hostname. + +* Bug fixes + * Disable core dumps before killing programs on shutdowns and reboots. This + saves I/O operations that might impact the saving of important data. + * Sync before killing programs on shutdowns and reboots to reduce the amount + of I/O needed during the graceful part of the shutdown. + ## v1.13.0 * New features diff --git a/Makefile b/Makefile index 473ba4b..c61112e 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=1.13.0 +VERSION=1.14.0 CFLAGS+=-Wall -Wextra -O2