From f26e7fb65a31b925918e65477b6700f8dc0f5dd0 Mon Sep 17 00:00:00 2001 From: Huijing Hei Date: Mon, 8 Dec 2025 10:50:46 +0800 Subject: [PATCH 1/2] crates/blockdev: publish new version `0.1.0` Signed-off-by: Huijing Hei --- Cargo.lock | 2 +- crates/blockdev/Cargo.toml | 2 +- crates/lib/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ac93806e9..c93e7c530 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -170,7 +170,7 @@ dependencies = [ [[package]] name = "bootc-internal-blockdev" -version = "0.0.0" +version = "0.1.0" dependencies = [ "anyhow", "bootc-internal-utils", diff --git a/crates/blockdev/Cargo.toml b/crates/blockdev/Cargo.toml index 1502596f1..5de74139b 100644 --- a/crates/blockdev/Cargo.toml +++ b/crates/blockdev/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "MIT OR Apache-2.0" name = "bootc-internal-blockdev" repository = "https://github.com/bootc-dev/bootc" -version = "0.0.0" +version = "0.1.0" [dependencies] # Internal crates diff --git a/crates/lib/Cargo.toml b/crates/lib/Cargo.toml index 48011b357..d8beebc73 100644 --- a/crates/lib/Cargo.toml +++ b/crates/lib/Cargo.toml @@ -14,7 +14,7 @@ include = ["/src", "LICENSE-APACHE", "LICENSE-MIT"] [dependencies] # Internal crates -bootc-blockdev = { package = "bootc-internal-blockdev", path = "../blockdev", version = "0.0.0" } +bootc-blockdev = { package = "bootc-internal-blockdev", path = "../blockdev", version = "0.1.0" } bootc-kernel-cmdline = { path = "../kernel_cmdline", version = "0.0.0" } bootc-mount = { path = "../mount" } bootc-sysusers = { path = "../sysusers" } From b9dd3a6ae06419b006e0e5f879bdc9abde384cae Mon Sep 17 00:00:00 2001 From: Huijing Hei Date: Tue, 9 Dec 2025 11:33:08 +0800 Subject: [PATCH 2/2] crates/utils: update version to `0.1.0` Signed-off-by: Huijing Hei --- Cargo.lock | 2 +- crates/blockdev/Cargo.toml | 2 +- crates/cli/Cargo.toml | 2 +- crates/lib/Cargo.toml | 2 +- crates/mount/Cargo.toml | 2 +- crates/ostree-ext/Cargo.toml | 2 +- crates/system-reinstall-bootc/Cargo.toml | 2 +- crates/sysusers/Cargo.toml | 2 +- crates/tmpfiles/Cargo.toml | 2 +- crates/utils/Cargo.toml | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c93e7c530..bfe5f188a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -189,7 +189,7 @@ dependencies = [ [[package]] name = "bootc-internal-utils" -version = "0.0.0" +version = "0.1.0" dependencies = [ "anstream", "anyhow", diff --git a/crates/blockdev/Cargo.toml b/crates/blockdev/Cargo.toml index 5de74139b..e1475141c 100644 --- a/crates/blockdev/Cargo.toml +++ b/crates/blockdev/Cargo.toml @@ -8,7 +8,7 @@ version = "0.1.0" [dependencies] # Internal crates -bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.0.0" } +bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.1.0" } # Workspace dependencies anyhow = { workspace = true } diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 50079e973..7ff3244f9 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -16,7 +16,7 @@ platforms = ["*-unknown-linux-gnu"] [dependencies] # Internal crates bootc-lib = { version = "1.11", path = "../lib" } -bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.0.0" } +bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.1.0" } # Workspace dependencies anstream = { workspace = true } diff --git a/crates/lib/Cargo.toml b/crates/lib/Cargo.toml index d8beebc73..42f46b37d 100644 --- a/crates/lib/Cargo.toml +++ b/crates/lib/Cargo.toml @@ -19,7 +19,7 @@ bootc-kernel-cmdline = { path = "../kernel_cmdline", version = "0.0.0" } bootc-mount = { path = "../mount" } bootc-sysusers = { path = "../sysusers" } bootc-tmpfiles = { path = "../tmpfiles" } -bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.0.0" } +bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.1.0" } ostree-ext = { path = "../ostree-ext", features = ["bootc"] } etc-merge = { path = "../etc-merge" } bootc-initramfs-setup = { path = "../initramfs" } diff --git a/crates/mount/Cargo.toml b/crates/mount/Cargo.toml index a8a7475a3..d0fbef6a0 100644 --- a/crates/mount/Cargo.toml +++ b/crates/mount/Cargo.toml @@ -10,7 +10,7 @@ version = "0.0.0" [dependencies] # Internal crates -bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.0.0" } +bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.1.0" } # Workspace dependencies anyhow = { workspace = true } diff --git a/crates/ostree-ext/Cargo.toml b/crates/ostree-ext/Cargo.toml index 7dfc59262..4c92babe0 100644 --- a/crates/ostree-ext/Cargo.toml +++ b/crates/ostree-ext/Cargo.toml @@ -9,7 +9,7 @@ version = "0.15.3" [dependencies] # Internal crates -bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.0.0" } +bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.1.0" } # Workspace dependencies anyhow = { workspace = true } diff --git a/crates/system-reinstall-bootc/Cargo.toml b/crates/system-reinstall-bootc/Cargo.toml index d25b24f45..d56c48b61 100644 --- a/crates/system-reinstall-bootc/Cargo.toml +++ b/crates/system-reinstall-bootc/Cargo.toml @@ -16,7 +16,7 @@ platforms = ["*-unknown-linux-gnu"] [dependencies] # Internal crates bootc-mount = { path = "../mount" } -bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.0.0" } +bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.1.0" } # Workspace dependencies anstream = { workspace = true } diff --git a/crates/sysusers/Cargo.toml b/crates/sysusers/Cargo.toml index d6b59c213..07ad69974 100644 --- a/crates/sysusers/Cargo.toml +++ b/crates/sysusers/Cargo.toml @@ -7,7 +7,7 @@ publish = false [dependencies] # Internal crates -bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.0.0" } +bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.1.0" } # Workspace dependencies anyhow = { workspace = true } diff --git a/crates/tmpfiles/Cargo.toml b/crates/tmpfiles/Cargo.toml index b450d1d9c..006d36f46 100644 --- a/crates/tmpfiles/Cargo.toml +++ b/crates/tmpfiles/Cargo.toml @@ -7,7 +7,7 @@ publish = false [dependencies] # Internal crates -bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.0.0" } +bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.1.0" } # Workspace dependencies camino = { workspace = true } diff --git a/crates/utils/Cargo.toml b/crates/utils/Cargo.toml index 229bf8d9e..9fc4475ba 100644 --- a/crates/utils/Cargo.toml +++ b/crates/utils/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "bootc-internal-utils" description = "Internal implementation component of bootc; do not use" -version = "0.0.0" +version = "0.1.0" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/bootc-dev/bootc"