diff --git a/Cargo.lock b/Cargo.lock
index 382e6eead..d4c98d485 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -379,7 +379,7 @@ dependencies = [
[[package]]
name = "console-api"
-version = "0.7.0"
+version = "0.8.0"
dependencies = [
"futures-core",
"prost",
@@ -392,7 +392,7 @@ dependencies = [
[[package]]
name = "console-subscriber"
-version = "0.3.0"
+version = "0.4.0"
dependencies = [
"console-api",
"crossbeam-channel",
@@ -1850,7 +1850,7 @@ dependencies = [
[[package]]
name = "tokio-console"
-version = "0.1.11"
+version = "0.1.12"
dependencies = [
"clap",
"clap_complete",
diff --git a/console-api/CHANGELOG.md b/console-api/CHANGELOG.md
index c83718e82..29aaca8ca 100644
--- a/console-api/CHANGELOG.md
+++ b/console-api/CHANGELOG.md
@@ -3,6 +3,20 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## 0.8.0 - (2024-07-29)
+
+### Breaking Changes
+- **Upgrade tonic to 0.12 ([#571](https://github.com/tokio-rs/console/pull/571))** ([5f6faa2](https://github.com/tokio-rs/console/commit/5f6faa22d944735c2b8c312cac03b35a4ab228ef))
This is a breaking change for users of `console-api` and
+`console-subscriber`, as it changes the public `tonic`, `prost` and
+`prost-types` dependency to a semver-incompatible version. This breaks
+compatibility with `tonic` 0.11.x as well as `prost`/`prost-types`
+0.12.x.
+
+### Updated
+
+- [**breaking**](#0.8.0-breaking) Upgrade tonic to 0.12 ([#571](https://github.com/tokio-rs/console/pull/571)) ([5f6faa2](https://github.com/tokio-rs/console/commit/5f6faa22d944735c2b8c312cac03b35a4ab228ef))
+
+
## console-api-v0.7.0 - (2024-06-10)
### Breaking Changes
diff --git a/console-api/Cargo.toml b/console-api/Cargo.toml
index aa689af4a..9d97c283d 100644
--- a/console-api/Cargo.toml
+++ b/console-api/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "console-api"
-version = "0.7.0"
+version = "0.8.0"
license = "MIT"
edition = "2021"
rust-version = "1.74.0"
diff --git a/console-subscriber/CHANGELOG.md b/console-subscriber/CHANGELOG.md
index bd647d90c..08792aa03 100644
--- a/console-subscriber/CHANGELOG.md
+++ b/console-subscriber/CHANGELOG.md
@@ -3,6 +3,28 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## 0.4.0 - (2024-07-29)
+
+### Breaking Changes
+- **Upgrade tonic to 0.12 ([#571](https://github.com/tokio-rs/console/pull/571))** ([5f6faa2](https://github.com/tokio-rs/console/commit/5f6faa22d944735c2b8c312cac03b35a4ab228ef))
This is a breaking change for users of `console-api` and
+`console-subscriber`, as it changes the public `tonic`, `prost` and
+`prost-types` dependency to a semver-incompatible version. This breaks
+compatibility with `tonic` 0.11.x as well as `prost`/`prost-types`
+0.12.x.
+
+### Added
+
+- Add `TOKIO_CONSOLE_BUFFER_CAPACITY` env variable ([#568](https://github.com/tokio-rs/console/pull/568)) ([a6cf14b](https://github.com/tokio-rs/console/commit/a6cf14b370275367dcecf1191e60f0bd260250d8))
+
+### Fixed
+
+- Remove unused `AggregatorHandle` and fix other lints ([#578](https://github.com/tokio-rs/console/pull/578)) ([c442063](https://github.com/tokio-rs/console/commit/c44206307997f8fc9ae173c466faf89c8f25c4b0))
+
+### Updated
+
+- [**breaking**](#0.4.0-breaking) Upgrade tonic to 0.12 ([#571](https://github.com/tokio-rs/console/pull/571)) ([5f6faa2](https://github.com/tokio-rs/console/commit/5f6faa22d944735c2b8c312cac03b35a4ab228ef))
+
+
## console-subscriber-v0.3.0 - (2024-06-10)
### Breaking Changes
diff --git a/console-subscriber/Cargo.toml b/console-subscriber/Cargo.toml
index f33718e04..60554286d 100644
--- a/console-subscriber/Cargo.toml
+++ b/console-subscriber/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "console-subscriber"
-version = "0.3.0"
+version = "0.4.0"
license = "MIT"
edition = "2021"
rust-version = "1.74.0"
@@ -35,7 +35,7 @@ crossbeam-utils = "0.8.7"
tokio = { version = "^1.21", features = ["sync", "time", "macros", "tracing"] }
tokio-stream = { version = "0.1", features = ["net"] }
thread_local = "1.1.3"
-console-api = { version = "0.7.0", path = "../console-api", features = ["transport"] }
+console-api = { version = "0.8.0", path = "../console-api", features = ["transport"] }
tonic = { version = "0.12", features = ["transport"] }
tracing-core = "0.1.24"
tracing = "0.1.26"
diff --git a/tokio-console/CHANGELOG.md b/tokio-console/CHANGELOG.md
index b5e32ed04..cd8f9b241 100644
--- a/tokio-console/CHANGELOG.md
+++ b/tokio-console/CHANGELOG.md
@@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## 0.1.12 - (2024-07-29)
+
+### Fixed
+
+- Handle Windows path correctly ([#555](https://github.com/tokio-rs/console/pull/555)) ([6ad0def](https://github.com/tokio-rs/console/commit/6ad0def9c4ac3d4e85ad8b7247ca270ff07b45b8))
+- Avoid crash when accessing selected item ([#570](https://github.com/tokio-rs/console/pull/570)) ([9205e15](https://github.com/tokio-rs/console/commit/9205e1594b960dbdd3ad4189c996aa1be09e76a8))
+
+### Updated
+
+- Upgrade tonic to 0.12 ([#571](https://github.com/tokio-rs/console/pull/571)) ([5f6faa2](https://github.com/tokio-rs/console/commit/5f6faa22d944735c2b8c312cac03b35a4ab228ef))
+
+
## tokio-console-v0.1.11 - (2024-06-10)
### Added
diff --git a/tokio-console/Cargo.toml b/tokio-console/Cargo.toml
index 4398f9fab..e14c35481 100644
--- a/tokio-console/Cargo.toml
+++ b/tokio-console/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tokio-console"
-version = "0.1.11"
+version = "0.1.12"
license = "MIT"
repository = "https://github.com/tokio-rs/console"
edition = "2021"
@@ -33,7 +33,7 @@ license = false
eula = false
[dependencies]
-console-api = { version = "0.7.0", path = "../console-api", features = ["transport"] }
+console-api = { version = "0.8.0", path = "../console-api", features = ["transport"] }
clap = { version = "~4.5.4", features = ["wrap_help", "cargo", "derive", "env"] }
clap_complete = "~4.5.2"
tokio = { version = "1", features = ["full", "rt-multi-thread"] }