From c4a368dbe72af0a516b81dac0d6fd18e3ffaae3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Linus=20F=C3=A4rnstrand?= Date: Fri, 12 Apr 2024 17:05:05 +0200 Subject: [PATCH] Elaborate on changelog entries that are breaking --- CHANGELOG.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f3012d5..c8cb3b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] ### Added -- Add support for user-defined control codes in services. - (See: `Service::notify` and `notify_service.rs` example) -- Add support for `LidSwitchStateChange` in `PowerBroadcastSetting`. - (See: `LidSwitchStateChange`) -- Add support for `SERVICE_SYSTEM_START` and `SERVICE_BOOT_START` in service start type +- Breaking: Add support for user-defined control codes in services. + (See: `Service::notify` and `notify_service.rs` example). This is breaking since + the `ServiceControl` enum was exhaustive in version 0.6.0. +- Breaking: Add support for `LidSwitchStateChange` in `PowerBroadcastSetting`. This is breaking + since `PowerBroadcastSetting` was an exhaustive enum in version 0.6.0. +- Breaking: Add support for `SERVICE_SYSTEM_START` and `SERVICE_BOOT_START` in service + start type. This is breaking since the `ServiceStartType` enum is exhaustive. - Add function for obtaining service SID infos. (See: `Service::get_config_service_sid_info`). ### Changed