Skip to content

Commit 89af61c

Browse files
committed
Release version 0.11
1 parent fd63f57 commit 89af61c

File tree

3 files changed

+16
-13
lines changed

3 files changed

+16
-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

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

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

3435
[workspace.dependencies]
35-
bootloader_api = { version = "0.11.0-beta.8", path = "api" }
36-
bootloader-x86_64-common = { version = "0.11.0-beta.8", path = "common" }
37-
bootloader-x86_64-bios-common = { version = "0.11.0-beta.8", path = "bios/common" }
36+
bootloader_api = { version = "0.11.0", path = "api" }
37+
bootloader-x86_64-common = { version = "0.11.0", path = "common" }
38+
bootloader-x86_64-bios-common = { version = "0.11.0", path = "bios/common" }
3839

3940
[dependencies]
4041
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)