File tree Expand file tree Collapse file tree 3 files changed +27
-16
lines changed
Filter options
Expand file tree Collapse file tree 3 files changed +27
-16
lines changed
Original file line number Diff line number Diff line change @@ -33,15 +33,15 @@ exclude = ["examples/basic", "examples/test_framework"]
33
33
34
34
[workspace .package ]
35
35
# don't forget to update `workspace.dependencies` below
36
- version = " 0.11.7 "
36
+ version = " 0.11.8 "
37
37
license = " MIT OR Apache-2.0"
38
38
repository = " https://github.com/rust-osdev/bootloader"
39
39
40
40
[workspace .dependencies ]
41
- bootloader_api = { version = " 0.11.7 " , path = " api" }
42
- bootloader-x86_64-common = { version = " 0.11.7 " , path = " common" }
43
- bootloader-boot-config = { version = " 0.11.7 " , path = " common/config" }
44
- bootloader-x86_64-bios-common = { version = " 0.11.7 " , path = " bios/common" }
41
+ bootloader_api = { version = " 0.11.8 " , path = " api" }
42
+ bootloader-x86_64-common = { version = " 0.11.8 " , path = " common" }
43
+ bootloader-boot-config = { version = " 0.11.8 " , path = " common/config" }
44
+ bootloader-x86_64-bios-common = { version = " 0.11.8 " , path = " bios/common" }
45
45
46
46
[features ]
47
47
default = [" bios" , " uefi" ]
Original file line number Diff line number Diff line change 1
1
# Unreleased
2
2
3
- * Fix bug leading to page table frames that are not mapped as writable
3
+ # 0.11.8 – 2024-11-02
4
+
5
+ * [ avoid 32-bit relocation to __ BOOTLOADER_CONFIG] ( https://github.com/rust-osdev/bootloader/pull/428 )
6
+ * [ Fix doc comment and error message only referencing the BIOS but used for UEFI] ( https://github.com/rust-osdev/bootloader/pull/439 )
7
+ * [ Ensure all page table frames are mapped as writable] ( https://github.com/rust-osdev/bootloader/pull/444 )
8
+ * [ Guard the lower 1MB of memory] ( https://github.com/rust-osdev/bootloader/pull/446 )
9
+ * [ always cover at least the first 4 GiB of physical memory] ( https://github.com/rust-osdev/bootloader/pull/448 )
10
+ * [ Fixed "jc fail" instructions not working properly and updated README.md] ( https://github.com/rust-osdev/bootloader/pull/453 )
11
+ * [ Remove 3dnow features from stage4 target] ( https://github.com/rust-osdev/bootloader/pull/471 )
12
+ * [ mention E820 in docs for UnknownBios] ( https://github.com/rust-osdev/bootloader/pull/461 )
13
+
14
+ ** Full Changelog** : https://github.com/rust-osdev/bootloader/compare/v0.11.7...v0.11.8
4
15
5
16
# 0.11.7 – 2024-02-16
6
17
You can’t perform that action at this time.
0 commit comments