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 19ed897 commit 8f3b458
Show file tree
Hide file tree
Showing 3 changed files with 15 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.

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

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

[workspace.dependencies]
bootloader_api = { version = "0.11.0-beta.7", path = "api" }
bootloader-x86_64-common = { version = "0.11.0-beta.7", path = "common" }
bootloader-x86_64-bios-common = { version = "0.11.0-beta.7", 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 8f3b458

Please sign in to comment.