Skip to content

Commit feb23fc

Browse files
chore: release
1 parent 85acb90 commit feb23fc

File tree

7 files changed

+72
-8
lines changed

7 files changed

+72
-8
lines changed

Diff for: Cargo.lock

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

Diff for: console-api/CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
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-04-10)
7+
8+
### <a id = "0.9.0-breaking"></a>Breaking Changes
9+
- **Upgrade tonic to 0.13 ([#615](https://github.com/tokio-rs/console/issues/615))** ([2bd1afd](https://github.com/tokio-rs/console/commit/2bd1afda7987dea0505d231d9ce8bf109e5f7a96))<br />This is a breaking change for users of `console-api` and
10+
`console-subscriber`, as it changes the public `tonic` dependency
11+
to a semver-incompatible version. This breaks compatibility with
12+
`tonic` 0.12.x.
13+
14+
### Added
15+
16+
- Add the WatchState API ([#582](https://github.com/tokio-rs/console/issues/582)) ([7c1f9f2](https://github.com/tokio-rs/console/commit/7c1f9f216f499a0309ecf597c721252186e72c82))
17+
18+
### Fixed
19+
20+
- 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))
21+
22+
### Updated
23+
24+
- [**breaking**](#0.9.0-breaking) Upgrade tonic to 0.13 ([#615](https://github.com/tokio-rs/console/issues/615)) ([2bd1afd](https://github.com/tokio-rs/console/commit/2bd1afda7987dea0505d231d9ce8bf109e5f7a96))
25+
26+
627
## 0.8.1 - (2024-10-24)
728

829
_No outward facing changes_

Diff for: 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"

Diff for: console-subscriber/CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
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.5.0 - (2025-04-10)
7+
8+
### <a id = "0.5.0-breaking"></a>Breaking Changes
9+
- **Upgrade tonic to 0.13 ([#615](https://github.com/tokio-rs/console/issues/615))** ([2bd1afd](https://github.com/tokio-rs/console/commit/2bd1afda7987dea0505d231d9ce8bf109e5f7a96))<br />This is a breaking change for users of `console-api` and
10+
`console-subscriber`, as it changes the public `tonic` dependency
11+
to a semver-incompatible version. This breaks compatibility with
12+
`tonic` 0.12.x.
13+
14+
### Added
15+
16+
- Add the WatchState API ([#582](https://github.com/tokio-rs/console/issues/582)) ([7c1f9f2](https://github.com/tokio-rs/console/commit/7c1f9f216f499a0309ecf597c721252186e72c82))
17+
18+
### Documented
19+
20+
- Fix typo in doc comment ([3dbca7a](https://github.com/tokio-rs/console/commit/3dbca7a76e581d15ac598adc82e0c465d530de36))
21+
22+
### Updated
23+
24+
- [**breaking**](#0.5.0-breaking) Upgrade tonic to 0.13 ([#615](https://github.com/tokio-rs/console/issues/615)) ([2bd1afd](https://github.com/tokio-rs/console/commit/2bd1afda7987dea0505d231d9ce8bf109e5f7a96))
25+
26+
627
## 0.4.1 - (2024-10-24)
728

829

Diff for: 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.5.0"
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.13.0", features = ["transport"] }
4040
tracing-core = "0.1.30"
4141
tracing = "0.1.35"

Diff for: tokio-console/CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,28 @@
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.2.0 - (2025-04-10)
7+
8+
### <a id = "0.2.0-breaking"></a>Breaking Changes
9+
- **Upgrade tonic to 0.13 ([#615](https://github.com/tokio-rs/console/issues/615))** ([2bd1afd](https://github.com/tokio-rs/console/commit/2bd1afda7987dea0505d231d9ce8bf109e5f7a96))<br />This is a breaking change for users of `console-api` and
10+
`console-subscriber`, as it changes the public `tonic` dependency
11+
to a semver-incompatible version. This breaks compatibility with
12+
`tonic` 0.12.x.
13+
14+
### Added
15+
16+
- Add the WatchState API ([#582](https://github.com/tokio-rs/console/issues/582)) ([7c1f9f2](https://github.com/tokio-rs/console/commit/7c1f9f216f499a0309ecf597c721252186e72c82))
17+
- 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))
18+
19+
### Fixed
20+
21+
- 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))
22+
23+
### Updated
24+
25+
- [**breaking**](#0.2.0-breaking) Upgrade tonic to 0.13 ([#615](https://github.com/tokio-rs/console/issues/615)) ([2bd1afd](https://github.com/tokio-rs/console/commit/2bd1afda7987dea0505d231d9ce8bf109e5f7a96))
26+
27+
628
## 0.1.13 - (2024-10-24)
729

830

Diff for: 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.2.0"
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)