diff --git a/Cargo.lock b/Cargo.lock index ac93806e9..bfe5f188a 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", @@ -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 1502596f1..e1475141c 100644 --- a/crates/blockdev/Cargo.toml +++ b/crates/blockdev/Cargo.toml @@ -4,11 +4,11 @@ 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 -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 48011b357..42f46b37d 100644 --- a/crates/lib/Cargo.toml +++ b/crates/lib/Cargo.toml @@ -14,12 +14,12 @@ 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" } 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"