Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
16 changes: 15 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
# 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)
* [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

# 0.11.15 - 2026-02-01

Expand Down
Loading