diff --git a/Cargo.lock b/Cargo.lock index 140a9e70a..50833b033 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -236,7 +236,7 @@ dependencies = [ [[package]] name = "bootc-internal-blockdev" -version = "0.2.0" +version = "1.15.0" dependencies = [ "anyhow", "bootc-internal-mount", @@ -256,7 +256,7 @@ dependencies = [ [[package]] name = "bootc-internal-mount" -version = "0.1.0" +version = "1.15.0" dependencies = [ "anyhow", "bootc-internal-utils", @@ -273,7 +273,7 @@ dependencies = [ [[package]] name = "bootc-internal-utils" -version = "0.1.0" +version = "1.15.0" dependencies = [ "anstream 1.0.0", "anyhow", @@ -305,7 +305,7 @@ dependencies = [ [[package]] name = "bootc-lib" -version = "1.14.1" +version = "1.15.0" dependencies = [ "anstream 1.0.0", "anstyle", diff --git a/crates/blockdev/Cargo.toml b/crates/blockdev/Cargo.toml index 83c79a9a9..437bf3424 100644 --- a/crates/blockdev/Cargo.toml +++ b/crates/blockdev/Cargo.toml @@ -4,12 +4,12 @@ edition = "2024" license = "MIT OR Apache-2.0" name = "bootc-internal-blockdev" repository = "https://github.com/bootc-dev/bootc" -version = "0.2.0" +version = "1.15.0" [dependencies] # Internal crates -bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.1.0" } -bootc-mount = { package = "bootc-internal-mount", path = "../mount", version = "0.1.0" } +bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "1.15.0" } +bootc-mount = { package = "bootc-internal-mount", path = "../mount", version = "1.15.0" } # Workspace dependencies anyhow = { workspace = true } diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index fe08c28fa..96a5ab82e 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -15,8 +15,8 @@ platforms = ["*-unknown-linux-gnu"] [dependencies] # Internal crates -bootc-lib = { version = "1.14", path = "../lib" } -bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.1.0" } +bootc-lib = { version = "1.15", path = "../lib" } +bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "1.15.0" } # Workspace dependencies anstream = { workspace = true } diff --git a/crates/lib/Cargo.toml b/crates/lib/Cargo.toml index d2f6af9d0..3cbc1d061 100644 --- a/crates/lib/Cargo.toml +++ b/crates/lib/Cargo.toml @@ -6,7 +6,7 @@ name = "bootc-lib" repository = "https://github.com/bootc-dev/bootc" # The intention is we'll follow semver here, even though this # project isn't actually published as a crate. -version = "1.14.1" +version = "1.15.0" # In general we try to keep this pinned to what's in the latest RHEL9. rust-version = "1.85.0" @@ -14,12 +14,12 @@ include = ["/src", "LICENSE-APACHE", "LICENSE-MIT"] [dependencies] # Internal crates -bootc-blockdev = { package = "bootc-internal-blockdev", path = "../blockdev", version = "0.2.0" } +bootc-blockdev = { package = "bootc-internal-blockdev", path = "../blockdev", version = "1.15.0" } bootc-kernel-cmdline = { path = "../kernel_cmdline", version = "0.0.0" } -bootc-mount = { package = "bootc-internal-mount", path = "../mount", version = "0.1.0" } +bootc-mount = { package = "bootc-internal-mount", path = "../mount", version = "1.15.0" } bootc-sysusers = { path = "../sysusers" } bootc-tmpfiles = { path = "../tmpfiles" } -bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.1.0" } +bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "1.15.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 e7f1a698c..af514bca8 100644 --- a/crates/mount/Cargo.toml +++ b/crates/mount/Cargo.toml @@ -4,11 +4,11 @@ edition = "2024" license = "MIT OR Apache-2.0" name = "bootc-internal-mount" repository = "https://github.com/bootc-dev/bootc" -version = "0.1.0" +version = "1.15.0" [dependencies] # Internal crates -bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.1.0" } +bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "1.15.0" } # Workspace dependencies anyhow = { workspace = true } diff --git a/crates/ostree-ext/Cargo.toml b/crates/ostree-ext/Cargo.toml index e4f65b37b..a173f327f 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.1.0" } +bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "1.15.0" } # Workspace dependencies anyhow = { workspace = true } diff --git a/crates/system-reinstall-bootc/Cargo.toml b/crates/system-reinstall-bootc/Cargo.toml index 921698e54..7260f22b5 100644 --- a/crates/system-reinstall-bootc/Cargo.toml +++ b/crates/system-reinstall-bootc/Cargo.toml @@ -15,8 +15,8 @@ platforms = ["*-unknown-linux-gnu"] [dependencies] # Internal crates -bootc-mount = { package = "bootc-internal-mount", path = "../mount", version = "0.1.0" } -bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.1.0" } +bootc-mount = { package = "bootc-internal-mount", path = "../mount", version = "1.15.0" } +bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "1.15.0" } # Workspace dependencies anstream = { workspace = true } diff --git a/crates/sysusers/Cargo.toml b/crates/sysusers/Cargo.toml index be83c420f..4b2050887 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.1.0" } +bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "1.15.0" } # Workspace dependencies anyhow = { workspace = true } diff --git a/crates/tmpfiles/Cargo.toml b/crates/tmpfiles/Cargo.toml index a19e0e1b5..8fbec2015 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.1.0" } +bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "1.15.0" } # Workspace dependencies camino = { workspace = true } diff --git a/crates/utils/Cargo.toml b/crates/utils/Cargo.toml index 474d8de6e..129dfbbfb 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.1.0" +version = "1.15.0" edition = "2024" license = "MIT OR Apache-2.0" repository = "https://github.com/bootc-dev/bootc"