From b1f6a85a025829f246bf7eaafd33a021f18f5847 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Thu, 11 Feb 2021 20:15:14 +0100 Subject: [PATCH] Change bootloader version to alpha 2 --- blog/content/edition-3/posts/02-booting/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/content/edition-3/posts/02-booting/index.md b/blog/content/edition-3/posts/02-booting/index.md index a104b48c..9902f960 100644 --- a/blog/content/edition-3/posts/02-booting/index.md +++ b/blog/content/edition-3/posts/02-booting/index.md @@ -192,7 +192,7 @@ To use the `bootloader` crate, we first need to add a dependency on it: # in Cargo.toml [dependencies] -bootloader = "0.10.0-alpha-01" # TODO +bootloader = "0.10.0-alpha-02" # TODO ``` For normal Rust crates, this step would be all that's needed for adding them as a dependency. However, the `bootloader` crate is a bit special. The problem is that it needs access to our kernel _after compilation_ in order to create a bootable disk image. However, cargo has no support for automatically running code after a successful build, so we need some manual build code for this. (There is a proposal for [post-build scripts] that would solve this issue, but it is not clear yet whether the Cargo team wants to add such a feature.)