Skip to content

Commit 4900a81

Browse files
chore: release
1 parent 6ef148a commit 4900a81

File tree

7 files changed

+37
-8
lines changed

7 files changed

+37
-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 - (2024-11-11)
7+
8+
9+
### Added
10+
11+
- Add the WatchState API ([#582](https://github.com/tokio-rs/console/pull/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/pull/593)) ([1f41b61](https://github.com/tokio-rs/console/commit/1f41b61fbada02d84cfa85911e66eb0078cae596))
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

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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 - (2024-11-11)
7+
8+
9+
### Added
10+
11+
- Add the WatchState API ([#582](https://github.com/tokio-rs/console/pull/582)) ([7c1f9f2](https://github.com/tokio-rs/console/commit/7c1f9f216f499a0309ecf597c721252186e72c82))
12+
13+
614
## 0.4.1 - (2024-10-24)
715

816

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.21", features = ["sync", "time", "macros", "tracing"] }
3636
tokio-stream = { version = "0.1", features = ["net"] }
3737
thread_local = "1.1.3"
38-
console-api = { version = "0.8.1", path = "../console-api", features = ["transport"] }
38+
console-api = { version = "0.9.0", path = "../console-api", features = ["transport"] }
3939
tonic = { version = "0.12", features = ["transport"] }
4040
tracing-core = "0.1.24"
4141
tracing = "0.1.26"

tokio-console/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
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 - (2024-11-11)
7+
8+
9+
### Added
10+
11+
- Add the WatchState API ([#582](https://github.com/tokio-rs/console/pull/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/pull/598)) ([6ef148a](https://github.com/tokio-rs/console/commit/6ef148a33fe71a682338bd65dd9271fd043086f2))
13+
14+
615
## 0.1.13 - (2024-10-24)
716

817

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", features = ["full", "rt-multi-thread"] }

0 commit comments

Comments
 (0)