Skip to content

Commit a3aee58

Browse files
committed
Set version numbers
1 parent 6caa684 commit a3aee58

File tree

10 files changed

+32
-26
lines changed

10 files changed

+32
-26
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cargo-features = ["profile-rustflags"]
22

33
[package]
44
name = "bootloader"
5-
version = "0.11.0-alpha"
5+
version.workspace = true
66
authors = ["Philipp Oppermann <dev@phil-opp.com>"]
77
license = "MIT/Apache-2.0"
88
description = "An experimental x86_64 bootloader that works on both BIOS and UEFI systems."
@@ -26,6 +26,12 @@ members = [
2626
]
2727
exclude = ["examples/basic", "examples/test_framework"]
2828

29+
[workspace.package]
30+
version = "0.11.0-beta"
31+
32+
[workspace.dependencies]
33+
bootloader_api = { version = "0.11.0-beta", path = "api" }
34+
bootloader-x86_64-common = { version = "0.11.0-beta", path = "common" }
2935

3036
[dependencies]
3137
anyhow = "1.0.32"

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-alpha.0"
3+
version.workspace = true
44
edition = "2021"
55
description = "Makes a kernel compatible with the bootloader crate"
66
license = "MIT/Apache-2.0"

bios/boot_sector/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-x86_64-bios-boot-sector"
3-
version = "0.1.0"
3+
version = "0.1.0-beta"
44
authors = ["Philipp Oppermann <dev@phil-opp.com>"]
55
edition = "2021"
66

bios/common/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-x86_64-bios-common"
3-
version = "0.1.0"
3+
version = "0.1.0-beta"
44
edition = "2021"
55

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

bios/stage-2/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bootloader-x86_64-bios-stage-2"
3-
version = "0.1.0"
3+
version = "0.1.0-beta"
44
authors = ["Philipp Oppermann <dev@phil-opp.com>"]
55
edition = "2021"
66

@@ -9,4 +9,4 @@ edition = "2021"
99
[dependencies]
1010
mbr-nostd = "0.1.0"
1111
byteorder = { version = "1.4.3", default-features = false }
12-
bootloader-x86_64-bios-common = { version = "0.1.0", path = "../common" }
12+
bootloader-x86_64-bios-common = { version = "0.1.0-beta", path = "../common" }

bios/stage-3/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "bootloader-x86_64-bios-stage-3"
3-
version = "0.1.0"
3+
version = "0.1.0-beta"
44
authors = ["Philipp Oppermann <dev@phil-opp.com>"]
55
edition = "2021"
66

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

99
[dependencies]
10-
bootloader-x86_64-bios-common = { version = "0.1.0", path = "../common" }
10+
bootloader-x86_64-bios-common = { version = "0.1.0-beta", path = "../common" }
1111
noto-sans-mono-bitmap = "0.1.5"

bios/stage-4/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "bootloader-x86_64-bios-stage-4"
3-
version = "0.1.0-alpha.0"
3+
version.workspace = true
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-alpha.0", path = "../../api" }
10-
bootloader-x86_64-bios-common = { version = "0.1.0", path = "../common" }
11-
bootloader-x86_64-common = { version = "0.1.0-alpha.0", path = "../../common" }
9+
bootloader_api = { workspace = true }
10+
bootloader-x86_64-common = { workspace = true }
11+
bootloader-x86_64-bios-common = { version = "0.1.0-beta", path = "../common" }
1212
log = "0.4.14"
1313
x86_64 = "0.14.8"
1414
rsdp = "2.0.0"

common/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "bootloader-x86_64-common"
3-
version = "0.1.0-alpha.0"
3+
version.workspace = true
44
edition = "2021"
55
description = "Common code for the x86_64 bootloader implementations"
66
license = "MIT/Apache-2.0"
77

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

1010
[dependencies]
11-
bootloader_api = { version = "0.1.0-alpha.0", path = "../api" }
11+
bootloader_api = { workspace = true }
1212
conquer-once = { version = "0.3.2", default-features = false }
1313
log = "0.4.14"
1414
spinning_top = "0.2.4"

uefi/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
22
name = "bootloader-x86_64-uefi"
3-
version = "0.1.0-alpha.0"
3+
version.workspace = true
44
edition = "2021"
55
description = "UEFI bootloader for x86_64"
66
license = "MIT/Apache-2.0"
77

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

1010
[dependencies]
11-
bootloader_api = { version = "0.1.0-alpha.0", path = "../api" }
12-
bootloader-x86_64-common = { version = "0.1.0-alpha.0", path = "../common" }
11+
bootloader_api = { workspace = true }
12+
bootloader-x86_64-common = { workspace = true }
1313
log = "0.4.14"
1414
uefi = "0.16.0"
1515
x86_64 = "0.14.8"

0 commit comments

Comments
 (0)