From 9c6d6624c4900ed274dd40b620943536cfee89a7 Mon Sep 17 00:00:00 2001 From: Burkhard Mittelbach Date: Tue, 13 Jan 2026 11:58:14 +0100 Subject: [PATCH 1/3] update changelog --- Changelog.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Changelog.md b/Changelog.md index ea9ef392..11a84cf0 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,15 @@ # Unreleased +# 0.11.14 - 2026-01-13 + +* [Add kernel stack address to `BootInfo`](https://github.com/rust-osdev/bootloader/pull/531) +* [Fix overflow error during address calculation](https://github.com/rust-osdev/bootloader/pull/530) +* [Add llvm-tools to components in rust-toolchain file](https://github.com/rust-osdev/bootloader/pull/529) +* [Update rust edition to 2024](https://github.com/rust-osdev/bootloader/pull/526) +* [Fix buffer overlow in `DiskAccess::read_exact_into` for bios](https://github.com/rust-osdev/bootloader/pull/524) + +**Full Changelog**: https://github.com/rust-osdev/bootloader/compare/v0.11.13...v0.11.14 + # 0.11.13 - 2025-11-27 This release is compatible with Rust nightlies starting with `nightly-2025-11-21`. From 2cb05523fac2bc8a3c1389e84d26451dd32e2a02 Mon Sep 17 00:00:00 2001 From: Burkhard Mittelbach Date: Tue, 13 Jan 2026 12:00:21 +0100 Subject: [PATCH 2/3] release v0.11.14 --- Cargo.lock | 20 ++++++++++---------- Cargo.toml | 10 +++++----- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1b0f5566..4b069c55 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -70,7 +70,7 @@ dependencies = [ [[package]] name = "bootloader" -version = "0.11.13" +version = "0.11.14" dependencies = [ "anyhow", "bootloader-boot-config", @@ -96,22 +96,22 @@ dependencies = [ [[package]] name = "bootloader-boot-config" -version = "0.11.13" +version = "0.11.14" dependencies = [ "serde", ] [[package]] name = "bootloader-x86_64-bios-boot-sector" -version = "0.11.13" +version = "0.11.14" [[package]] name = "bootloader-x86_64-bios-common" -version = "0.11.13" +version = "0.11.14" [[package]] name = "bootloader-x86_64-bios-stage-2" -version = "0.11.13" +version = "0.11.14" dependencies = [ "bootloader-x86_64-bios-common", "byteorder", @@ -120,7 +120,7 @@ dependencies = [ [[package]] name = "bootloader-x86_64-bios-stage-3" -version = "0.11.13" +version = "0.11.14" 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.13" +version = "0.11.14" dependencies = [ "bootloader-boot-config", "bootloader-x86_64-bios-common", @@ -143,7 +143,7 @@ dependencies = [ [[package]] name = "bootloader-x86_64-common" -version = "0.11.13" +version = "0.11.14" dependencies = [ "bootloader-boot-config", "bootloader_api", @@ -162,7 +162,7 @@ dependencies = [ [[package]] name = "bootloader-x86_64-uefi" -version = "0.11.13" +version = "0.11.14" dependencies = [ "bootloader-boot-config", "bootloader-x86_64-common", @@ -175,7 +175,7 @@ dependencies = [ [[package]] name = "bootloader_api" -version = "0.11.13" +version = "0.11.14" dependencies = [ "rand", ] diff --git a/Cargo.toml b/Cargo.toml index 440566e6..4fdb2af3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,15 +22,15 @@ exclude = ["examples/basic", "examples/test_framework", "tests/test_kernels/*"] [workspace.package] # don't forget to update `workspace.dependencies` below -version = "0.11.13" +version = "0.11.14" license = "MIT OR Apache-2.0" repository = "https://github.com/rust-osdev/bootloader" [workspace.dependencies] -bootloader_api = { version = "0.11.13", path = "api" } -bootloader-x86_64-common = { version = "0.11.13", path = "common" } -bootloader-boot-config = { version = "0.11.13", path = "common/config" } -bootloader-x86_64-bios-common = { version = "0.11.13", path = "bios/common" } +bootloader_api = { version = "0.11.14", path = "api" } +bootloader-x86_64-common = { version = "0.11.14", path = "common" } +bootloader-boot-config = { version = "0.11.14", path = "common/config" } +bootloader-x86_64-bios-common = { version = "0.11.14", path = "bios/common" } [features] default = ["bios", "uefi"] From a067fc3b32824e2593afed386ca385df1e24a3d0 Mon Sep 17 00:00:00 2001 From: Tom Dohrmann Date: Tue, 13 Jan 2026 19:08:48 +0100 Subject: [PATCH 3/3] mention two more fixes These are publicly facing, so let's mention them for completeness sake. --- Changelog.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Changelog.md b/Changelog.md index 11a84cf0..efc1c8e5 100644 --- a/Changelog.md +++ b/Changelog.md @@ -5,6 +5,8 @@ * [Add kernel stack address to `BootInfo`](https://github.com/rust-osdev/bootloader/pull/531) * [Fix overflow error during address calculation](https://github.com/rust-osdev/bootloader/pull/530) * [Add llvm-tools to components in rust-toolchain file](https://github.com/rust-osdev/bootloader/pull/529) +* [Fix links documentation](https://github.com/rust-osdev/bootloader/pull/528) +* [Fix typo in documentation](https://github.com/rust-osdev/bootloader/pull/527) * [Update rust edition to 2024](https://github.com/rust-osdev/bootloader/pull/526) * [Fix buffer overlow in `DiskAccess::read_exact_into` for bios](https://github.com/rust-osdev/bootloader/pull/524)