Skip to content

Commit 31dc52c

Browse files
committed
Set subcrate version to 0.1.0-alpha.0
1 parent aefa4aa commit 31dc52c

File tree

5 files changed

+9
-13
lines changed

5 files changed

+9
-13
lines changed

Cargo.lock

Lines changed: 2 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bootloader"
3-
version = "0.10.10"
3+
version = "0.11.0-alpha.0"
44
authors = ["Philipp Oppermann <dev@phil-opp.com>"]
55
license = "MIT/Apache-2.0"
66
description = "An experimental x86_64 bootloader that works on both BIOS and UEFI systems."

api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bootloader_api"
3-
version = "0.1.0"
3+
version = "0.1.0-alpha.0"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

common/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "bootloader-x86_64-common"
3-
version = "0.1.0"
3+
version = "0.1.0-alpha.0"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
bootloader_api = { version = "0.1.0", path = "../api" }
9+
bootloader_api = { version = "0.1.0-alpha.0", path = "../api" }
1010
conquer-once = { version = "0.3.2", default-features = false }
1111
log = "0.4.14"
1212
spinning_top = "0.2.4"

uefi/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "bootloader-x86_64-uefi"
3-
version = "0.1.0"
3+
version = "0.1.0-alpha.0"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
bootloader_api = { version = "0.1.0", path = "../api" }
10-
bootloader-x86_64-common = { version = "0.1.0", path = "../common" }
9+
bootloader_api = { version = "0.1.0-alpha.0", path = "../api" }
10+
bootloader-x86_64-common = { version = "0.1.0-alpha.0", path = "../common" }
1111
log = "0.4.14"
1212
uefi = "0.13.0"
1313
x86_64 = "0.14.8"

0 commit comments

Comments
 (0)