Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.11.10 #493

Merged
merged 2 commits into from
Feb 10, 2025
Merged
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 @@ -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.9"
version = "0.11.10"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-osdev/bootloader"

[workspace.dependencies]
bootloader_api = { version = "0.11.8", path = "api" }
bootloader-x86_64-common = { version = "0.11.8", path = "common" }
bootloader-boot-config = { version = "0.11.8", path = "common/config" }
bootloader-x86_64-bios-common = { version = "0.11.8", path = "bios/common" }
bootloader_api = { version = "0.11.10", path = "api" }
bootloader-x86_64-common = { version = "0.11.10", path = "common" }
bootloader-boot-config = { version = "0.11.10", path = "common/config" }
bootloader-x86_64-bios-common = { version = "0.11.10", path = "bios/common" }

[features]
default = ["bios", "uefi"]
Expand Down
11 changes: 11 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Unreleased

# 0.11.10 – 2025-02-10

* [Remove "UEFI boot" log message](https://github.com/rust-osdev/bootloader/pull/476)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should add a new # 0.11.10 – 2025-02-10 section heading and link the full change log below **Full Changelog**: https://github.com/rust-osdev/bootloader/compare/v0.11.9...v0.11.10

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, done!

* [use threads instead of futures in build.rs](https://github.com/rust-osdev/bootloader/pull/484)
* [Move test kernels to a separate workspace](https://github.com/rust-osdev/bootloader/pull/486)
* [fix condition for running bootloader common tests](https://github.com/rust-osdev/bootloader/pull/487)
* [Update `x86_64` to `0.15.2`](https://github.com/rust-osdev/bootloader/pull/490)
* [change rustc-abi in custom targets to x86-softfloat](https://github.com/rust-osdev/bootloader/pull/491)

**Full Changelog**: https://github.com/rust-osdev/bootloader/compare/v0.11.9...v0.11.10

# 0.11.9 – 2024-11-30

This release is compatible with Rust nightlies starting with `nightly-2024-11-23`.
Expand Down
Loading