chore: release v1.25.3 (#6223)

# 1.25.3 (December 17thm 2023)

### Fixed
- io: add budgeting to `tokio::runtime::io::registration::async_io` ([#6221])

[#6221]: https://github.com/tokio-rs/tokio/pull/6221
This commit is contained in:
Noah Kennedy
2023-12-19 17:09:44 +01:00
committed by GitHub
parent ab7313ff6b
commit 0d362339d5
5 changed files with 11 additions and 4 deletions
Generated
+1 -1
View File
@@ -1088,7 +1088,7 @@ dependencies = [
[[package]]
name = "tokio"
version = "1.25.2"
version = "1.25.3"
dependencies = [
"async-stream",
"autocfg",
+1 -1
View File
@@ -56,7 +56,7 @@ Make sure you activated the full features of the tokio crate on Cargo.toml:
```toml
[dependencies]
tokio = { version = "1.25.2", features = ["full"] }
tokio = { version = "1.25.3", features = ["full"] }
```
Then, on your main.rs:
+7
View File
@@ -1,3 +1,10 @@
# 1.25.3 (December 17th, 2023)
### Fixed
- io: add budgeting to `tokio::runtime::io::registration::async_io` ([#6221])
[#6221]: https://github.com/tokio-rs/tokio/pull/6221
# 1.25.2 (September 22, 2023)
Forward ports 1.20.6 changes.
+1 -1
View File
@@ -6,7 +6,7 @@ name = "tokio"
# - README.md
# - Update CHANGELOG.md.
# - Create "v1.x.y" git tag.
version = "1.25.2"
version = "1.25.3"
edition = "2018"
rust-version = "1.49"
authors = ["Tokio Contributors <[email protected]>"]
+1 -1
View File
@@ -56,7 +56,7 @@ Make sure you activated the full features of the tokio crate on Cargo.toml:
```toml
[dependencies]
tokio = { version = "1.25.2", features = ["full"] }
tokio = { version = "1.25.3", features = ["full"] }
```
Then, on your main.rs: