diff --git a/Cargo.lock b/Cargo.lock
index b064053e3..25758a1a6 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -370,7 +370,7 @@ dependencies = [
[[package]]
name = "console-api"
-version = "0.8.0"
+version = "0.8.1"
dependencies = [
"futures-core",
"prost",
@@ -383,7 +383,7 @@ dependencies = [
[[package]]
name = "console-subscriber"
-version = "0.4.0"
+version = "0.4.1"
dependencies = [
"console-api",
"crossbeam-channel",
@@ -1821,7 +1821,7 @@ dependencies = [
[[package]]
name = "tokio-console"
-version = "0.1.12"
+version = "0.1.13"
dependencies = [
"clap",
"clap_complete",
@@ -2444,6 +2444,7 @@ version = "0.1.0"
dependencies = [
"clap",
"color-eyre",
+ "regex",
"tonic-build",
]
diff --git a/console-api/CHANGELOG.md b/console-api/CHANGELOG.md
index 29aaca8ca..6adeb43aa 100644
--- a/console-api/CHANGELOG.md
+++ b/console-api/CHANGELOG.md
@@ -3,6 +3,10 @@
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.1 - (2024-10-24)
+
+_No outward facing changes_
+
## 0.8.0 - (2024-07-29)
### Breaking Changes
diff --git a/console-api/Cargo.toml b/console-api/Cargo.toml
index 9d97c283d..ddf7ddee7 100644
--- a/console-api/Cargo.toml
+++ b/console-api/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "console-api"
-version = "0.8.0"
+version = "0.8.1"
license = "MIT"
edition = "2021"
rust-version = "1.74.0"
diff --git a/console-subscriber/CHANGELOG.md b/console-subscriber/CHANGELOG.md
index 08792aa03..527b6be8b 100644
--- a/console-subscriber/CHANGELOG.md
+++ b/console-subscriber/CHANGELOG.md
@@ -3,6 +3,14 @@
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.1 - (2024-10-24)
+
+
+### Added
+
+- Add large future lints ([#587](https://github.com/tokio-rs/console/pull/587)) ([ae17230](https://github.com/tokio-rs/console/commit/ae1723091fcc76597e78bae39129a48d8cd515c9))
+
+
## 0.4.0 - (2024-07-29)
### Breaking Changes
diff --git a/console-subscriber/Cargo.toml b/console-subscriber/Cargo.toml
index 60554286d..fcf2103be 100644
--- a/console-subscriber/Cargo.toml
+++ b/console-subscriber/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "console-subscriber"
-version = "0.4.0"
+version = "0.4.1"
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.8.0", path = "../console-api", features = ["transport"] }
+console-api = { version = "0.8.1", 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 cd8f9b241..3da86943e 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.13 - (2024-10-24)
+
+
+### Added
+
+- Add large future lints ([#587](https://github.com/tokio-rs/console/pull/587)) ([ae17230](https://github.com/tokio-rs/console/commit/ae1723091fcc76597e78bae39129a48d8cd515c9))
+
+### Fixed
+
+- Correct the grammar issue ([#579](https://github.com/tokio-rs/console/pull/579)) ([f8e1bee](https://github.com/tokio-rs/console/commit/f8e1bee760358f702ca8359ec3de6cb39649fe60))
+
+
## 0.1.12 - (2024-07-29)
### Fixed
diff --git a/tokio-console/Cargo.toml b/tokio-console/Cargo.toml
index f7a6b4916..1368a4150 100644
--- a/tokio-console/Cargo.toml
+++ b/tokio-console/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tokio-console"
-version = "0.1.12"
+version = "0.1.13"
license = "MIT"
repository = "https://github.com/tokio-rs/console"
edition = "2021"
@@ -33,7 +33,7 @@ license = false
eula = false
[dependencies]
-console-api = { version = "0.8.0", path = "../console-api", features = ["transport"] }
+console-api = { version = "0.8.1", 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"] }