From ed8a9c59c08cf491f97c99c769f083d0be662ead Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Tue, 7 Jul 2026 09:47:12 +0000 Subject: [PATCH 1/3] update changelog Co-Authored-By: Claude Opus 4.8 (1M context) --- Changelog.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 251755b5..1d8494bf 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,6 +1,19 @@ # Unreleased -* change `rustc-abi` in custom targets from `x86-softfloat` to `softfloat`, following [rust-lang/rust#157151](https://github.com/rust-lang/rust/pull/157151) +# 0.11.16 - 2026-07-07 + +This release is compatible with Rust nightlies starting with `nightly-2026-07-06`. + +* change `rustc-abi` in custom targets from `x86-softfloat` to `softfloat`, following [rust-lang/rust#157151](https://github.com/rust-lang/rust/pull/157151) ([#569](https://github.com/rust-osdev/bootloader/pull/569)) +* [Fix nightly breakage (nightly-2026-05-10)](https://github.com/rust-osdev/bootloader/pull/563) +* [Add missing `x86_64-unknown-uefi` target](https://github.com/rust-osdev/bootloader/pull/557) +* [Bump `uart_16550` to 0.6.0](https://github.com/rust-osdev/bootloader/pull/565) +* [Bump `critical-section`, `atomic-polyfill`, and `heapless`](https://github.com/rust-osdev/bootloader/pull/567) +* [Speed up BIOS disk reads by merging contiguous cluster reads and skipping already-buffered data](https://github.com/rust-osdev/bootloader/pull/550) +* [Fix FAT type detection for large FAT16 volumes](https://github.com/rust-osdev/bootloader/pull/547) +* [Expose FAT partition creation as a separate public function](https://github.com/rust-osdev/bootloader/pull/535) + +**Full Changelog**: https://github.com/rust-osdev/bootloader/compare/v0.11.15...v0.11.16 # 0.11.15 - 2026-02-01 From 0e01159d66d55f206c88e7f2aa5fd21a3167ae82 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Tue, 7 Jul 2026 09:47:12 +0000 Subject: [PATCH 2/3] release 0.11.16 Co-Authored-By: Claude Opus 4.8 (1M context) --- Cargo.lock | 20 ++++++++++---------- Cargo.toml | 10 +++++----- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 271e0d19..6dc7f54b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -70,7 +70,7 @@ dependencies = [ [[package]] name = "bootloader" -version = "0.11.15" +version = "0.11.16" dependencies = [ "anyhow", "bootloader-boot-config", @@ -96,22 +96,22 @@ dependencies = [ [[package]] name = "bootloader-boot-config" -version = "0.11.15" +version = "0.11.16" dependencies = [ "serde", ] [[package]] name = "bootloader-x86_64-bios-boot-sector" -version = "0.11.15" +version = "0.11.16" [[package]] name = "bootloader-x86_64-bios-common" -version = "0.11.15" +version = "0.11.16" [[package]] name = "bootloader-x86_64-bios-stage-2" -version = "0.11.15" +version = "0.11.16" dependencies = [ "bootloader-x86_64-bios-common", "byteorder", @@ -120,7 +120,7 @@ dependencies = [ [[package]] name = "bootloader-x86_64-bios-stage-3" -version = "0.11.15" +version = "0.11.16" dependencies = [ "bootloader-x86_64-bios-common", "noto-sans-mono-bitmap 0.1.6", @@ -128,7 +128,7 @@ dependencies = [ [[package]] name = "bootloader-x86_64-bios-stage-4" -version = "0.11.15" +version = "0.11.16" dependencies = [ "bootloader-boot-config", "bootloader-x86_64-bios-common", @@ -143,7 +143,7 @@ dependencies = [ [[package]] name = "bootloader-x86_64-common" -version = "0.11.15" +version = "0.11.16" dependencies = [ "bootloader-boot-config", "bootloader_api", @@ -162,7 +162,7 @@ dependencies = [ [[package]] name = "bootloader-x86_64-uefi" -version = "0.11.15" +version = "0.11.16" dependencies = [ "bootloader-boot-config", "bootloader-x86_64-common", @@ -175,7 +175,7 @@ dependencies = [ [[package]] name = "bootloader_api" -version = "0.11.15" +version = "0.11.16" dependencies = [ "rand", ] diff --git a/Cargo.toml b/Cargo.toml index fa53e96b..3d731169 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,15 +23,15 @@ resolver = "3" [workspace.package] # don't forget to update `workspace.dependencies` below -version = "0.11.15" +version = "0.11.16" license = "MIT OR Apache-2.0" repository = "https://github.com/rust-osdev/bootloader" [workspace.dependencies] -bootloader_api = { version = "0.11.15", path = "api" } -bootloader-x86_64-common = { version = "0.11.15", path = "common" } -bootloader-boot-config = { version = "0.11.15", path = "common/config" } -bootloader-x86_64-bios-common = { version = "0.11.15", path = "bios/common" } +bootloader_api = { version = "0.11.16", path = "api" } +bootloader-x86_64-common = { version = "0.11.16", path = "common" } +bootloader-boot-config = { version = "0.11.16", path = "common/config" } +bootloader-x86_64-bios-common = { version = "0.11.16", path = "bios/common" } [features] default = ["bios", "uefi"] From 6431e846e8de3c32423df41c4071ee414acfb65c Mon Sep 17 00:00:00 2001 From: Tom Dohrmann Date: Tue, 7 Jul 2026 21:17:53 +0200 Subject: [PATCH 3/3] update changelog --- Changelog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Changelog.md b/Changelog.md index 1d8494bf..ba0339b5 100644 --- a/Changelog.md +++ b/Changelog.md @@ -12,6 +12,7 @@ This release is compatible with Rust nightlies starting with `nightly-2026-07-06 * [Speed up BIOS disk reads by merging contiguous cluster reads and skipping already-buffered data](https://github.com/rust-osdev/bootloader/pull/550) * [Fix FAT type detection for large FAT16 volumes](https://github.com/rust-osdev/bootloader/pull/547) * [Expose FAT partition creation as a separate public function](https://github.com/rust-osdev/bootloader/pull/535) +* [uefi: bump from 0.20 to 0.38](https://github.com/rust-osdev/bootloader/pull/566) **Full Changelog**: https://github.com/rust-osdev/bootloader/compare/v0.11.15...v0.11.16