Skip to content

Commit 55fa53e

Browse files
chore: release
1 parent ee4ef17 commit 55fa53e

File tree

7 files changed

+58
-8
lines changed

7 files changed

+58
-8
lines changed

Cargo.lock

Lines changed: 3 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: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
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.0 - (2024-07-16)
7+
8+
### <a id = "0.8.0-breaking"></a>Breaking Changes
9+
- **Upgrade tonic to 0.12 ([#571](https://github.com/tokio-rs/console/pull/571))** ([5f6faa2](https://github.com/tokio-rs/console/commit/5f6faa22d944735c2b8c312cac03b35a4ab228ef))<br />This is a breaking change for users of `console-api` and
10+
`console-subscriber`, as it changes the public `tonic`, `prost` and
11+
`prost-types` dependency to a semver-incompatible version. This breaks
12+
compatibility with `tonic` 0.11.x as well as `prost`/`prost-types`
13+
0.12.x.
14+
15+
### Updated
16+
17+
- [**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))
18+
19+
620
## console-api-v0.7.0 - (2024-06-10)
721

822
### <a id = "0.7.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.7.0"
3+
version = "0.8.0"
44
license = "MIT"
55
edition = "2021"
66
rust-version = "1.74.0"

console-subscriber/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
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.0 - (2024-07-16)
7+
8+
### <a id = "0.4.0-breaking"></a>Breaking Changes
9+
- **Upgrade tonic to 0.12 ([#571](https://github.com/tokio-rs/console/pull/571))** ([5f6faa2](https://github.com/tokio-rs/console/commit/5f6faa22d944735c2b8c312cac03b35a4ab228ef))<br />This is a breaking change for users of `console-api` and
10+
`console-subscriber`, as it changes the public `tonic`, `prost` and
11+
`prost-types` dependency to a semver-incompatible version. This breaks
12+
compatibility with `tonic` 0.11.x as well as `prost`/`prost-types`
13+
0.12.x.
14+
15+
### Added
16+
17+
- 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))
18+
19+
### Updated
20+
21+
- [**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))
22+
23+
624
## console-subscriber-v0.3.0 - (2024-06-10)
725

826
### <a id = "0.3.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.3.0"
3+
version = "0.4.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.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.7.0", path = "../console-api", features = ["transport"] }
38+
console-api = { version = "0.8.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

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
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 - (2024-07-16)
7+
8+
### <a id = "0.2.0-breaking"></a>Breaking Changes
9+
- **Upgrade tonic to 0.12 ([#571](https://github.com/tokio-rs/console/pull/571))** ([5f6faa2](https://github.com/tokio-rs/console/commit/5f6faa22d944735c2b8c312cac03b35a4ab228ef))<br />This is a breaking change for users of `console-api` and
10+
`console-subscriber`, as it changes the public `tonic`, `prost` and
11+
`prost-types` dependency to a semver-incompatible version. This breaks
12+
compatibility with `tonic` 0.11.x as well as `prost`/`prost-types`
13+
0.12.x.
14+
15+
### Fixed
16+
17+
- Handle Windows path correctly ([#555](https://github.com/tokio-rs/console/pull/555)) ([6ad0def](https://github.com/tokio-rs/console/commit/6ad0def9c4ac3d4e85ad8b7247ca270ff07b45b8))
18+
19+
### Updated
20+
21+
- [**breaking**](#0.2.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))
22+
23+
624
## tokio-console-v0.1.11 - (2024-06-10)
725

826
### Added

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.11"
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.7.0", path = "../console-api", features = ["transport"] }
36+
console-api = { version = "0.8.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)