Skip to content

Commit

Permalink
Merge pull request #410 from rust-osdev/release
Browse files Browse the repository at this point in the history
Release `v0.11.5`
  • Loading branch information
phil-opp authored Dec 28, 2023
2 parents 22d116f + 6ea5e5f commit 0fec6fd
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 15 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 @@ -31,15 +31,15 @@ exclude = ["examples/basic", "examples/test_framework"]

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

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

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

# 0.11.5 – 2023-12-28

* [RacyCell<T>: Data race allowed on `T`](https://github.com/rust-osdev/bootloader/pull/390)
* [Update license field following SPDX 2.1 license expression standard](https://github.com/rust-osdev/bootloader/pull/391)
* [kernel image fields & zero out rbp](https://github.com/rust-osdev/bootloader/pull/346)
* [Update `rustix` dependency](https://github.com/rust-osdev/bootloader/pull/398)
* [Add an additional MB of space to the generated FAT partition](https://github.com/rust-osdev/bootloader/pull/397)
* [Fix: Enable test runner again](https://github.com/rust-osdev/bootloader/pull/407)
* [Fix: Mark `ramdisk` as used in memory map](https://github.com/rust-osdev/bootloader/pull/408)

**Full Changelog**: https://github.com/rust-osdev/bootloader/compare/v0.11.4...v0.11.5

# 0.11.4 – 2023-07-05

- [Fix bug stemming from treating an exclusive range as an inclusive ranges](https://github.com/rust-osdev/bootloader/pull/362)
Expand Down

0 comments on commit 0fec6fd

Please sign in to comment.