Skip to content

Commit

Permalink
bump version to 0.7.0 (#158)
Browse files Browse the repository at this point in the history
It's been a little too long since we bumped the version, so there's a
bunch that's new in 0.7. New commands since 0.6:

- "humility doc": print command documentation
- "humility extract": extract all or part of a Hubris archive
- "humility flash": flash archive onto attached device
- "humility gdb": Attach to a running system using GDB
- "humility hash": Access to the HASH block
- "humility openocd": Run OpenOCD for the given archive
- "humility registers": print Hubris registers
- "humility spctrl": RoT -> SP control
- "humility validate": validate presence and operation of devices

Also of note:

- The old "humility renbb" has been renamed "humility rendmp" 
- We have a trycmd-based test suite thanks to @steveklabnik
- We have many Hubris core files added as fodder for testing

Beyond these, many bugs that have been fixed and features added to
various commands; of note in particular is that "humility dashboard"
(and anything else that purely makes HIF calls) will not halt the
target -- which should make it significantly less disruptive.
  • Loading branch information
bcantrill committed Jun 15, 2022
1 parent 20e5e47 commit 5b9738c
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "humility"
version = "0.6.0"
version = "0.7.0"
authors = ["Bryan Cantrill <bryan@oxide.computer>"]
edition = "2018"
license = "MPL-2.0"
Expand Down
2 changes: 1 addition & 1 deletion cmd/rendmp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "humility-cmd-rendmp"
version = "0.1.0"
edition = "2021"
description = "Renesas digitial muliphase controller operations"
description = "Renesas digital muliphase controller operations"

[dependencies]
humility = { path = "../../humility-core", package = "humility-core" }
Expand Down
2 changes: 1 addition & 1 deletion cmd/validate/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ use humility_cmd::idol;
use humility_cmd::{Archive, Args, Attach, Command, Validate};

#[derive(Parser, Debug)]
#[clap(name = "sensors", about = env!("CARGO_PKG_DESCRIPTION"))]
#[clap(name = "validate", about = env!("CARGO_PKG_DESCRIPTION"))]
struct ValidateArgs {
/// sets timeout
#[clap(
Expand Down
4 changes: 2 additions & 2 deletions tests/cmd/chip.trycmd
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ For more information try --help

```
$ humility --chip this-can-be-anything -V
humility 0.6.0
humility 0.7.0

```

Expand All @@ -34,7 +34,7 @@ For more information try --help

```
$ humility -c apx432 -V
humility 0.6.0
humility 0.7.0

```

4 changes: 2 additions & 2 deletions tests/cmd/version.trycmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ Long version flag:

```
$ humility --version
humility 0.6.0
humility 0.7.0

```

Short version flag:

```
$ humility -V
humility 0.6.0
humility 0.7.0

```

0 comments on commit 5b9738c

Please sign in to comment.