Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ platforms = ["*-unknown-linux-gnu"]

[dependencies]
# Internal crates
bootc-lib = { version = "1.10", path = "../lib" }
bootc-lib = { version = "1.11", path = "../lib" }
bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.0.0" }

# Workspace dependencies
Expand Down
2 changes: 1 addition & 1 deletion crates/lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.10.0"
version = "1.11.0"
# In general we try to keep this pinned to what's in the latest RHEL9.
rust-version = "1.84.0"

Expand Down
7 changes: 7 additions & 0 deletions docs/src/host-v1.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,13 @@
"description": "A bootable entry",
"type": "object",
"properties": {
"bootDigest": {
"description": "The sha256sum of vmlinuz + initrd\nOnly `Some` for Type1 boot entries",
"type": [
"string",
"null"
]
},
"bootType": {
"description": "Whether this deployment is to be booted via Type1 (vmlinuz + initrd) or Type2 (UKI) entry",
"$ref": "#/$defs/BootType"
Expand Down
1 change: 0 additions & 1 deletion docs/src/man/bootc.8.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ pulled and `bootc upgrade`.
| **bootc install** | Install the running container to a target |
| **bootc container** | Operations which can be executed as part of a container build |
| **bootc composefs-finalize-staged** | |
| **bootc config-diff** | Diff current /etc configuration versus default |

<!-- END GENERATED SUBCOMMANDS -->

Expand Down
Loading