Skip to content

Commit 5ba3f94

Browse files
committed
console: prepare to release v0.1.1 (#261)
<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))
1 parent 12a4821 commit 5ba3f94

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

console/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
<a name=""></a>
2+
## (2022-01-18)
3+
4+
5+
#### Features
6+
7+
* feature-flag `tracing-journald` dependency (#250) ([24f25dbd](24f25dbd))
8+
* add vi style keybinds for tables (#223) ([1845c998](1845c998))
9+
10+
#### Bug Fixes
11+
12+
* fix task lookup in async ops view (#257) ([9a50b630](9a50b630))
13+
* don't make details requests with rewritten IDs (#251) ([4ec26a8d](4ec26a8d))
14+
* fix build error with journald enabled ([a931b7ec](a931b7ec))
15+
* increase default event buffer capacity a bit (#235) ([0cf0aee3](0cf0aee3))
16+
* wrap controls line when the terminal is too narrow (#231) ([ef415072](ef415072))
17+
* don't enable crossterm mouse capture (#222) ([e020d66c](e020d66c), closes [#167](167))
18+
19+
20+
#### Changes
21+
22+
* move ID rewriting from `console-subscriber` to the client (#244) ([095b1ef](095b1ef))
23+
124
<a name="0.1.0"></a>
225
## 0.1.0 (2021-12-16)
326

console/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tokio-console"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
license = "MIT"
55
repository = "https://github.com/tokio-rs/console"
66
edition = "2021"
@@ -27,7 +27,7 @@ keywords = [
2727

2828
[dependencies]
2929
atty = "0.2"
30-
console-api = { version = "0.1.0", path = "../console-api", features = ["transport"] }
30+
console-api = { version = "0.1.1", path = "../console-api", features = ["transport"] }
3131
clap = { version = "3", features = ["cargo", "derive", "env"] }
3232
tokio = { version = "1", features = ["full", "rt-multi-thread"] }
3333
tonic = { version = "0.6", features = ["transport"] }

0 commit comments

Comments
 (0)