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.7 #426

Merged
merged 1 commit into from
Feb 16, 2024
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 @@ -31,15 +31,15 @@ exclude = ["examples/basic", "examples/test_framework"]

[workspace.package]
# don't forget to update `workspace.dependencies` below
version = "0.11.6"
version = "0.11.7"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-osdev/bootloader"

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

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

# 0.11.7 – 2024-02-16

* Set `NO_EXECUTE` flag for all writable memory regions by @phil-opp in https://github.com/rust-osdev/bootloader/pull/409
* adapt data layout to match LLVM's by @tsatke in https://github.com/rust-osdev/bootloader/pull/420

**Full Changelog**: https://github.com/rust-osdev/bootloader/compare/v0.11.6...v0.11.7

# 0.11.6 – 2024-01-28

* [Embed bios and uefi binaries](https://github.com/rust-osdev/bootloader/pull/395)
Expand Down
Loading