Skip to content

Commit 21c202d

Browse files
chore: release
1 parent ada7dab commit 21c202d

File tree

7 files changed

+45
-8
lines changed

7 files changed

+45
-8
lines changed

Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

console-api/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

6+
## 0.9.0 - (2025-03-31)
7+
8+
9+
### Added
10+
11+
- Add the WatchState API ([#582](https://github.com/tokio-rs/console/issues/582)) ([7c1f9f2](https://github.com/tokio-rs/console/commit/7c1f9f216f499a0309ecf597c721252186e72c82))
12+
13+
### Fixed
14+
15+
- Bump minimum version of tonic ([#593](https://github.com/tokio-rs/console/issues/593)) ([1f41b61](https://github.com/tokio-rs/console/commit/1f41b61fbada02d84cfa85911e66eb0078cae596), closes [#592](https://github.com/tokio-rs/console/issues/592), closes [#592](https://github.com/tokio-rs/console/issues/592))
16+
17+
618
## 0.8.1 - (2024-10-24)
719

820
_No outward facing changes_

console-api/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "console-api"
3-
version = "0.8.1"
3+
version = "0.9.0"
44
license = "MIT"
55
edition = "2021"
66
rust-version = "1.74.0"

console-subscriber/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

6+
## 0.4.2 - (2025-03-31)
7+
8+
9+
### Added
10+
11+
- Add the WatchState API ([#582](https://github.com/tokio-rs/console/issues/582)) ([7c1f9f2](https://github.com/tokio-rs/console/commit/7c1f9f216f499a0309ecf597c721252186e72c82))
12+
13+
### Documented
14+
15+
- Fix typo in doc comment ([3dbca7a](https://github.com/tokio-rs/console/commit/3dbca7a76e581d15ac598adc82e0c465d530de36))
16+
17+
618
## 0.4.1 - (2024-10-24)
719

820

console-subscriber/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "console-subscriber"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
license = "MIT"
55
edition = "2021"
66
rust-version = "1.74.0"
@@ -35,7 +35,7 @@ crossbeam-utils = "0.8.7"
3535
tokio = { version = "1.34", features = ["sync", "time", "macros", "tracing"] }
3636
tokio-stream = { version = "0.1.16", features = ["net"] }
3737
thread_local = "1.1.4"
38-
console-api = { version = "0.8.0", path = "../console-api", features = ["transport"] }
38+
console-api = { version = "0.9.0", path = "../console-api", features = ["transport"] }
3939
tonic = { version = "0.12.3", features = ["transport"] }
4040
tracing-core = "0.1.30"
4141
tracing = "0.1.35"

tokio-console/CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@
33
All notable changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

6+
## 0.1.14 - (2025-03-31)
7+
8+
9+
### Added
10+
11+
- Add the WatchState API ([#582](https://github.com/tokio-rs/console/issues/582)) ([7c1f9f2](https://github.com/tokio-rs/console/commit/7c1f9f216f499a0309ecf597c721252186e72c82))
12+
- Improve error msg when state streaming API is unimplemented ([#598](https://github.com/tokio-rs/console/issues/598)) ([6ef148a](https://github.com/tokio-rs/console/commit/6ef148a33fe71a682338bd65dd9271fd043086f2))
13+
14+
### Fixed
15+
16+
- Add dynamic constraints layout in task details screen ([#614](https://github.com/tokio-rs/console/issues/614)) ([ada7dab](https://github.com/tokio-rs/console/commit/ada7dab753b96ebcc6dbc63600bfb97a726c217e), fixes [#523](https://github.com/tokio-rs/console/issues/523), fixes [#523](https://github.com/tokio-rs/console/issues/523))
17+
18+
619
## 0.1.13 - (2024-10-24)
720

821

tokio-console/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tokio-console"
3-
version = "0.1.13"
3+
version = "0.1.14"
44
license = "MIT"
55
repository = "https://github.com/tokio-rs/console"
66
edition = "2021"
@@ -33,7 +33,7 @@ license = false
3333
eula = false
3434

3535
[dependencies]
36-
console-api = { version = "0.8.1", path = "../console-api", features = ["transport"] }
36+
console-api = { version = "0.9.0", path = "../console-api", features = ["transport"] }
3737
clap = { version = "~4.5.4", features = ["wrap_help", "cargo", "derive", "env"] }
3838
clap_complete = "~4.5.2"
3939
tokio = { version = "1.34", features = ["full", "rt-multi-thread"] }

0 commit comments

Comments
 (0)