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"] diff --git a/Changelog.md b/Changelog.md index ea9ef392..efc1c8e5 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,17 @@ # 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) +* [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) + +**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`.