From a5c74e75c167c2c48f4687966f8e1ca93f6d529d Mon Sep 17 00:00:00 2001 From: Nicholas Bishop Date: Tue, 6 Sep 2022 12:27:06 -0400 Subject: [PATCH] Update changelog for uefi-macros The change to `#[entry]` is mentioned in the `uefi` section already since it's also relevant there, but worth mentioning in the `uefi-macros` section as well so that it's clear why there's a new version and to note that the arguments to main must now be named. --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a79774b09..c15f0eba2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -57,6 +57,13 @@ ## uefi-macros - [Unreleased] +### Changed + +- The `#[entry]` macro now calls `BootServices::set_image_handle` to set + the global image handle. Due to this change, the two arguments to main + must both be named (e.g. `image: Handle` and `_image: Handle` are both + OK, but not `_: Handle`). + ## uefi-services - [Unreleased] ### Added