diff --git a/Cargo.lock b/Cargo.lock index a418a9775..f53cee85a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1885,7 +1885,7 @@ dependencies = [ [[package]] name = "humility-bin" -version = "0.13.8" +version = "0.13.9" dependencies = [ "anyhow", "bitfield", diff --git a/cmd/host/src/lib.rs b/cmd/host/src/lib.rs index ea6862d64..ae5c2dc81 100644 --- a/cmd/host/src/lib.rs +++ b/cmd/host/src/lib.rs @@ -164,12 +164,10 @@ static HOST_STATE_BUF_NAME_2: &str = static PACKRAT_BUF_NAME: &str = "task_packrat::main::BUFS"; // packrat field names -const PACKRAT_LAST_PANIC_PAYLOAD: &str = - "cell.value.host_info.host_panic_payload"; -const PACKRAT_LAST_PANIC_STATE: &str = "cell.value.host_info.host_panic_state"; -const PACKRAT_BOOT_FAIL_PAYLOAD: &str = - "cell.value.host_info.host_panic_payload"; -const PACKRAT_BOOT_FAIL_STATE: &str = "cell.value.host_info.host_panic_state"; +const PACKRAT_LAST_PANIC_PAYLOAD: &str = "cell.value.host_info.panic_payload"; +const PACKRAT_LAST_PANIC_STATE: &str = "cell.value.host_info.panic_state"; +const PACKRAT_BOOT_FAIL_PAYLOAD: &str = "cell.value.host_info.panic_payload"; +const PACKRAT_BOOT_FAIL_STATE: &str = "cell.value.host_info.panic_state"; /// Mirror type of the internal buf struct in `host_sp_comms`. Must be kept in /// (partial) sync with that structure (fields that are present need to match, diff --git a/humility-bin/Cargo.toml b/humility-bin/Cargo.toml index 3f2399714..4847d3e2f 100644 --- a/humility-bin/Cargo.toml +++ b/humility-bin/Cargo.toml @@ -18,7 +18,7 @@ [package] name = "humility-bin" edition.workspace = true -version = "0.13.8" +version = "0.13.9" license = "MPL-2.0" [build-dependencies] diff --git a/humility-bin/tests/cmd/chip.trycmd b/humility-bin/tests/cmd/chip.trycmd index 997fd5076..d9d703852 100644 --- a/humility-bin/tests/cmd/chip.trycmd +++ b/humility-bin/tests/cmd/chip.trycmd @@ -13,7 +13,7 @@ For more information, try '--help'. ``` $ humility --chip this-can-be-anything -V -humility 0.13.8 +humility 0.13.9 ``` @@ -28,6 +28,6 @@ For more information, try '--help'. ``` $ humility -c apx432 -V -humility 0.13.8 +humility 0.13.9 ``` diff --git a/humility-bin/tests/cmd/version.trycmd b/humility-bin/tests/cmd/version.trycmd index 71ea5819e..3dc1166b5 100644 --- a/humility-bin/tests/cmd/version.trycmd +++ b/humility-bin/tests/cmd/version.trycmd @@ -2,7 +2,7 @@ Long version flag: ``` $ humility --version -humility 0.13.8 +humility 0.13.9 ``` @@ -10,6 +10,6 @@ Short version flag: ``` $ humility -V -humility 0.13.8 +humility 0.13.9 ```