Skip to content

Commit 1480098

Browse files
committed
Use unified version across all sub-crates to simplify release process
1 parent 11736be commit 1480098

File tree

7 files changed

+20
-19
lines changed

7 files changed

+20
-19
lines changed

Cargo.lock

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

Cargo.toml

+5-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ cargo-features = ["profile-rustflags"]
44
name = "bootloader"
55
description = "An experimental x86_64 bootloader that works on both BIOS and UEFI systems."
66
license.workspace = true
7-
version = "0.11.0-beta.1"
7+
version.workspace = true
88
repository.workspace = true
99
authors = ["Philipp Oppermann <[email protected]>"]
1010
edition = "2021"
@@ -27,13 +27,14 @@ members = [
2727
exclude = ["examples/basic", "examples/test_framework"]
2828

2929
[workspace.package]
30-
version = "0.11.0-beta"
30+
version = "0.11.0-beta.1"
3131
license = "MIT/Apache-2.0"
3232
repository = "https://github.com/rust-osdev/bootloader"
3333

3434
[workspace.dependencies]
35-
bootloader_api = { version = "0.11.0-beta", path = "api" }
36-
bootloader-x86_64-common = { version = "0.11.0-beta", path = "common" }
35+
bootloader_api = { version = "0.11.0-beta.1", path = "api" }
36+
bootloader-x86_64-common = { version = "0.11.0-beta.1", path = "common" }
37+
bootloader-x86_64-bios-common = { version = "0.11.0-beta.1", path = "bios/common" }
3738

3839
[dependencies]
3940
anyhow = "1.0.32"

bios/boot_sector/Cargo.toml

+1-1
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-beta.1"
3+
version.workspace = true
44
authors = ["Philipp Oppermann <[email protected]>"]
55
edition = "2021"
66
license.workspace = true

bios/common/Cargo.toml

+1-1
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-beta"
3+
version.workspace = true
44
edition = "2021"
55
license.workspace = true
66
repository.workspace = true

bios/stage-2/Cargo.toml

+2-2
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-beta"
3+
version.workspace = true
44
authors = ["Philipp Oppermann <[email protected]>"]
55
edition = "2021"
66
license.workspace = true
@@ -12,7 +12,7 @@ description = "Second BIOS stage of the `bootloader` crate"
1212
[dependencies]
1313
mbr-nostd = "0.1.0"
1414
byteorder = { version = "1.4.3", default-features = false }
15-
bootloader-x86_64-bios-common = { version = "0.1.0-beta", path = "../common" }
15+
bootloader-x86_64-bios-common = { workspace = true }
1616

1717
# This currently causes a cargo warning, but it is required for publishing to crates.io.
1818
# See https://github.com/rust-lang/cargo/issues/8264 for details.

bios/stage-3/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bootloader-x86_64-bios-stage-3"
3-
version = "0.1.0-beta"
3+
version.workspace = true
44
authors = ["Philipp Oppermann <[email protected]>"]
55
edition = "2021"
66
license.workspace = true
@@ -10,7 +10,7 @@ description = "Third BIOS stage of the `bootloader` crate"
1010
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1111

1212
[dependencies]
13-
bootloader-x86_64-bios-common = { version = "0.1.0-beta", path = "../common" }
13+
bootloader-x86_64-bios-common = { workspace = true }
1414
noto-sans-mono-bitmap = "0.1.5"
1515

1616
# This currently causes a cargo warning, but it is required for publishing to crates.io.

bios/stage-4/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ description = "Fourth BIOS stage of the `bootloader` crate"
1111
[dependencies]
1212
bootloader_api = { workspace = true }
1313
bootloader-x86_64-common = { workspace = true }
14-
bootloader-x86_64-bios-common = { version = "0.1.0-beta", path = "../common" }
14+
bootloader-x86_64-bios-common = { workspace = true }
1515
log = "0.4.14"
1616
x86_64 = "0.14.8"
1717
rsdp = "2.0.0"

0 commit comments

Comments
 (0)