Skip to content

Commit

Permalink
Release version 0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-opp committed Dec 1, 2022
1 parent fd63f57 commit 89af61c
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 13 deletions.
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,15 @@ members = [
exclude = ["examples/basic", "examples/test_framework"]

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

[workspace.dependencies]
bootloader_api = { version = "0.11.0-beta.8", path = "api" }
bootloader-x86_64-common = { version = "0.11.0-beta.8", path = "common" }
bootloader-x86_64-bios-common = { version = "0.11.0-beta.8", path = "bios/common" }
bootloader_api = { version = "0.11.0", path = "api" }
bootloader-x86_64-common = { version = "0.11.0", path = "common" }
bootloader-x86_64-bios-common = { version = "0.11.0", path = "bios/common" }

[dependencies]
anyhow = "1.0.32"
Expand Down
2 changes: 2 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Unreleased

# 0.11.0 – 2022-12-01

Major rewrite of the `bootloader` crate with various breaking changes:

- **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.
Expand Down

0 comments on commit 89af61c

Please sign in to comment.