Skip to content

Commit d8785c6

Browse files
bootc-bot[bot]cgwalters
authored andcommitted
Release 1.15.0
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 7d0cfe6 commit d8785c6

File tree

10 files changed

+21
-21
lines changed

10 files changed

+21
-21
lines changed

Cargo.lock

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

crates/blockdev/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ edition = "2024"
44
license = "MIT OR Apache-2.0"
55
name = "bootc-internal-blockdev"
66
repository = "https://github.com/bootc-dev/bootc"
7-
version = "0.2.0"
7+
version = "1.15.0"
88

99
[dependencies]
1010
# Internal crates
11-
bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.1.0" }
12-
bootc-mount = { package = "bootc-internal-mount", path = "../mount", version = "0.1.0" }
11+
bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "1.15.0" }
12+
bootc-mount = { package = "bootc-internal-mount", path = "../mount", version = "1.15.0" }
1313

1414
# Workspace dependencies
1515
anyhow = { workspace = true }

crates/cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ platforms = ["*-unknown-linux-gnu"]
1515

1616
[dependencies]
1717
# Internal crates
18-
bootc-lib = { version = "1.14", path = "../lib" }
19-
bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.1.0" }
18+
bootc-lib = { version = "1.15", path = "../lib" }
19+
bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "1.15.0" }
2020

2121
# Workspace dependencies
2222
anstream = { workspace = true }

crates/lib/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@ name = "bootc-lib"
66
repository = "https://github.com/bootc-dev/bootc"
77
# The intention is we'll follow semver here, even though this
88
# project isn't actually published as a crate.
9-
version = "1.14.1"
9+
version = "1.15.0"
1010
# In general we try to keep this pinned to what's in the latest RHEL9.
1111
rust-version = "1.85.0"
1212

1313
include = ["/src", "LICENSE-APACHE", "LICENSE-MIT"]
1414

1515
[dependencies]
1616
# Internal crates
17-
bootc-blockdev = { package = "bootc-internal-blockdev", path = "../blockdev", version = "0.2.0" }
17+
bootc-blockdev = { package = "bootc-internal-blockdev", path = "../blockdev", version = "1.15.0" }
1818
bootc-kernel-cmdline = { path = "../kernel_cmdline", version = "0.0.0" }
19-
bootc-mount = { package = "bootc-internal-mount", path = "../mount", version = "0.1.0" }
19+
bootc-mount = { package = "bootc-internal-mount", path = "../mount", version = "1.15.0" }
2020
bootc-sysusers = { path = "../sysusers" }
2121
bootc-tmpfiles = { path = "../tmpfiles" }
22-
bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.1.0" }
22+
bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "1.15.0" }
2323
ostree-ext = { path = "../ostree-ext", features = ["bootc"] }
2424
etc-merge = { path = "../etc-merge" }
2525
bootc-initramfs-setup = { path = "../initramfs" }

crates/mount/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ edition = "2024"
44
license = "MIT OR Apache-2.0"
55
name = "bootc-internal-mount"
66
repository = "https://github.com/bootc-dev/bootc"
7-
version = "0.1.0"
7+
version = "1.15.0"
88

99
[dependencies]
1010
# Internal crates
11-
bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.1.0" }
11+
bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "1.15.0" }
1212

1313
# Workspace dependencies
1414
anyhow = { workspace = true }

crates/ostree-ext/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ version = "0.15.3"
99

1010
[dependencies]
1111
# Internal crates
12-
bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.1.0" }
12+
bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "1.15.0" }
1313

1414
# Workspace dependencies
1515
anyhow = { workspace = true }

crates/system-reinstall-bootc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ platforms = ["*-unknown-linux-gnu"]
1515

1616
[dependencies]
1717
# Internal crates
18-
bootc-mount = { package = "bootc-internal-mount", path = "../mount", version = "0.1.0" }
19-
bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.1.0" }
18+
bootc-mount = { package = "bootc-internal-mount", path = "../mount", version = "1.15.0" }
19+
bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "1.15.0" }
2020

2121
# Workspace dependencies
2222
anstream = { workspace = true }

crates/sysusers/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ publish = false
77

88
[dependencies]
99
# Internal crates
10-
bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.1.0" }
10+
bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "1.15.0" }
1111

1212
# Workspace dependencies
1313
anyhow = { workspace = true }

crates/tmpfiles/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ publish = false
77

88
[dependencies]
99
# Internal crates
10-
bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.1.0" }
10+
bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "1.15.0" }
1111

1212
# Workspace dependencies
1313
camino = { workspace = true }

crates/utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "bootc-internal-utils"
33
description = "Internal implementation component of bootc; do not use"
4-
version = "0.1.0"
4+
version = "1.15.0"
55
edition = "2024"
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/bootc-dev/bootc"

0 commit comments

Comments
 (0)