diff --git a/Cargo.lock b/Cargo.lock index a4ca99d12..768c139b4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1272,7 +1272,7 @@ dependencies = [ [[package]] name = "tokio-console" -version = "0.1.0" +version = "0.1.1" dependencies = [ "atty", "clap", diff --git a/console/CHANGELOG.md b/console/CHANGELOG.md index 2e208d553..c46ba05b9 100644 --- a/console/CHANGELOG.md +++ b/console/CHANGELOG.md @@ -1,3 +1,26 @@ + +## 0.1.1 (2022-01-18) + + +#### Features + +* feature-flag `tracing-journald` dependency (#250) ([24f25dbd](24f25dbd)) +* add vi style keybinds for tables (#223) ([1845c998](1845c998)) + +#### Bug Fixes + +* fix task lookup in async ops view (#257) ([9a50b630](9a50b630)) +* don't make details requests with rewritten IDs (#251) ([4ec26a8d](4ec26a8d)) +* fix build error with journald enabled ([a931b7ec](a931b7ec)) +* increase default event buffer capacity a bit (#235) ([0cf0aee3](0cf0aee3)) +* wrap controls line when the terminal is too narrow (#231) ([ef415072](ef415072)) +* don't enable crossterm mouse capture (#222) ([e020d66c](e020d66c), closes [#167](167)) + + +#### Changes + +* move ID rewriting from `console-subscriber` to the client (#244) ([095b1ef](095b1ef)) + ## 0.1.0 (2021-12-16) diff --git a/console/Cargo.toml b/console/Cargo.toml index 8c07ad8a3..8fbb33a90 100644 --- a/console/Cargo.toml +++ b/console/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokio-console" -version = "0.1.0" +version = "0.1.1" license = "MIT" repository = "https://github.com/tokio-rs/console" edition = "2021" @@ -27,7 +27,7 @@ keywords = [ [dependencies] atty = "0.2" -console-api = { version = "0.1.0", path = "../console-api", features = ["transport"] } +console-api = { version = "0.1.1", path = "../console-api", features = ["transport"] } clap = { version = "3", features = ["cargo", "derive", "env"] } tokio = { version = "1", features = ["full", "rt-multi-thread"] } tonic = { version = "0.6", features = ["transport"] }