Skip to content

Commit 8f3b458

Browse files
committed
Release version 0.11
1 parent 19ed897 commit 8f3b458

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

Diff for: Cargo.lock

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ members = [
2727
exclude = ["examples/basic", "examples/test_framework"]
2828

2929
[workspace.package]
30-
version = "0.11.0-beta.7" # don't forget to update `workspace.dependencies` below
30+
version = "0.11.0" # don't forget to update `workspace.dependencies` below
3131
license = "MIT/Apache-2.0"
3232
repository = "https://github.com/rust-osdev/bootloader"
3333

3434
[workspace.dependencies]
35-
bootloader_api = { version = "0.11.0-beta.7", path = "api" }
36-
bootloader-x86_64-common = { version = "0.11.0-beta.7", path = "common" }
37-
bootloader-x86_64-bios-common = { version = "0.11.0-beta.7", path = "bios/common" }
35+
bootloader_api = { version = "0.11.0", path = "api" }
36+
bootloader-x86_64-common = { version = "0.11.0", path = "common" }
37+
bootloader-x86_64-bios-common = { version = "0.11.0", path = "bios/common" }
3838

3939
[dependencies]
4040
anyhow = "1.0.32"

Diff for: Changelog.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Unreleased
22

3+
# 0.11.0 – 2022-12-01
4+
35
Major rewrite of the `bootloader` crate with various breaking changes:
46

57
- **Separate API crate:** The bootloader is now split into two parts: An API crate to make kernels loadable by the bootloader and the actual bootloader implementation. This makes the build process for kernels much easier and faster.

0 commit comments

Comments
 (0)