Skip to content

Commit

Permalink
console: prepare to release v0.1.1 (#261)
Browse files Browse the repository at this point in the history
<a name=""></a>
##  (2022-01-18)

#### Features

*  feature-flag `tracing-journald` dependency (#250) ([24f25db](24f25db))
*  add vi style keybinds for tables (#223) ([1845c99](1845c99))

#### Bug Fixes

*  fix task lookup in async ops view (#257) ([9a50b63](9a50b63))
*  don't make details requests with rewritten IDs (#251) ([4ec26a8](4ec26a8))
*  fix build error with journald enabled ([a931b7e](a931b7e))
*  increase default event buffer capacity a bit (#235) ([0cf0aee](0cf0aee))
*  wrap controls line when the terminal is too narrow (#231) ([ef41507](ef41507))
*  don't enable crossterm mouse capture (#222) ([e020d66](e020d66), closes [#167](167))
  • Loading branch information
hawkw committed Jan 18, 2022
1 parent 12a4821 commit 25b80ce
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 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.

23 changes: 23 additions & 0 deletions console/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
<a name="0.1.1"></a>
## 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))

<a name="0.1.0"></a>
## 0.1.0 (2021-12-16)

Expand Down
4 changes: 2 additions & 2 deletions console/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"] }
Expand Down

0 comments on commit 25b80ce

Please sign in to comment.