Skip to content

Commit

Permalink
release v0.11.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Freax13 committed Nov 1, 2024
1 parent 0188e71 commit b5174b7
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 16 deletions.
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 @@ -33,15 +33,15 @@ exclude = ["examples/basic", "examples/test_framework"]

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

[workspace.dependencies]
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" }
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" }

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

* Fix bug leading to page table frames that are not mapped as writable
# 0.11.8 – 2024-11-01

* [avoid 32-bit relocation to __BOOTLOADER_CONFIG](https://github.com/rust-osdev/bootloader/pull/428)
* [Fix doc comment and error message only referencing the BIOS but used for UEFI](https://github.com/rust-osdev/bootloader/pull/439)
* [Ensure all page table frames are mapped as writable](https://github.com/rust-osdev/bootloader/pull/444)
* [Guard the lower 1MB of memory](https://github.com/rust-osdev/bootloader/pull/446)
* [always cover at least the first 4 GiB of physical memory](https://github.com/rust-osdev/bootloader/pull/448)
* [Fixed "jc fail" instructions not working properly and updated README.md](https://github.com/rust-osdev/bootloader/pull/453)
* [Remove 3dnow features from stage4 target](https://github.com/rust-osdev/bootloader/pull/471)

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

# 0.11.7 – 2024-02-16

Expand Down

0 comments on commit b5174b7

Please sign in to comment.