Skip to content

Commit 669e3c0

Browse files
authored
Merge pull request #293 from rust-osdev/release-v0.11
Release version `0.11`
2 parents 9ea4fe1 + 89af61c commit 669e3c0

File tree

3 files changed

+16
-20
lines changed

3 files changed

+16
-20
lines changed

Cargo.lock

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

Cargo.toml

+5-11
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"
@@ -107,10 +108,3 @@ llvm-tools = "0.1.1"
107108

108109
[package.metadata.docs.rs]
109110
rustc-args = ["--cfg", "docsrs_dummy_build"]
110-
111-
[package.metadata.release]
112-
dev-version = false
113-
pre-release-replacements = [
114-
{ file = "Changelog.md", search = "# Unreleased", replace = "# Unreleased\n\n# {{version}} – {{date}}", exactly = 1 },
115-
]
116-
pre-release-commit-message = "Release version {{version}}"

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)