Skip to content

Commit 2dd6a0d

Browse files
chore: release console-api-v0.8.1, console-subscriber-v0.4.1, tokio-console-v0.1.13 (tokio-rs#581)
## 🤖 New release * `tokio-console`: 0.1.12 -> 0.1.13 (✓ API compatible changes) * `console-api`: 0.8.0 -> 0.8.1 (✓ API compatible changes) * `console-subscriber`: 0.4.0 -> 0.4.1 (✓ API compatible changes) ## Changelog ## `tokio-console` ## 0.1.13 - (2024-10-24) ### Added - Add large future lints ([tokio-rs#587](tokio-rs#587)) ([ae17230](tokio-rs@ae17230)) ### Fixed - Correct the grammar issue ([tokio-rs#579](tokio-rs#579)) ([f8e1bee](tokio-rs@f8e1bee)) ## `console-api` ## 0.8.1 - (2024-10-24) _No outward facing changes_ ## `console-subscriber` ## 0.4.1 - (2024-10-24) ### Added - Add large future lints ([tokio-rs#587](tokio-rs#587)) ([ae17230](tokio-rs@ae17230)) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent eff20bd commit 2dd6a0d

File tree

7 files changed

+33
-8
lines changed

7 files changed

+33
-8
lines changed

Cargo.lock

Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

console-api/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.8.1 - (2024-10-24)
7+
8+
_No outward facing changes_
9+
610
## 0.8.0 - (2024-07-29)
711

812
### <a id = "0.8.0-breaking"></a>Breaking Changes

console-api/Cargo.toml

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

console-subscriber/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
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.1 - (2024-10-24)
7+
8+
9+
### Added
10+
11+
- Add large future lints ([#587](https://github.com/tokio-rs/console/pull/587)) ([ae17230](https://github.com/tokio-rs/console/commit/ae1723091fcc76597e78bae39129a48d8cd515c9))
12+
13+
614
## 0.4.0 - (2024-07-29)
715

816
### <a id = "0.4.0-breaking"></a>Breaking Changes

console-subscriber/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "console-subscriber"
3-
version = "0.4.0"
3+
version = "0.4.1"
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.0", path = "../console-api", features = ["transport"] }
38+
console-api = { version = "0.8.1", 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

Lines changed: 12 additions & 0 deletions
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.1.13 - (2024-10-24)
7+
8+
9+
### Added
10+
11+
- Add large future lints ([#587](https://github.com/tokio-rs/console/pull/587)) ([ae17230](https://github.com/tokio-rs/console/commit/ae1723091fcc76597e78bae39129a48d8cd515c9))
12+
13+
### Fixed
14+
15+
- Correct the grammar issue ([#579](https://github.com/tokio-rs/console/pull/579)) ([f8e1bee](https://github.com/tokio-rs/console/commit/f8e1bee760358f702ca8359ec3de6cb39649fe60))
16+
17+
618
## 0.1.12 - (2024-07-29)
719

820
### Fixed

tokio-console/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tokio-console"
3-
version = "0.1.12"
3+
version = "0.1.13"
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.0", path = "../console-api", features = ["transport"] }
36+
console-api = { version = "0.8.1", 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)