chore: prepare to release v1.46.1 (#7444)

# 1.46.1 (July 4th, 2025)

This release fixes incorrect spawn locations in runtime task hooks for tasks
spawned using `tokio::spawn` rather than `Runtime::spawn`. This issue only
effected the spawn location in `TaskMeta::spawned_at`, and did not effect task
locations in Tracing events.

## Unstable

- runtime: add `TaskMeta::spawn_location` tracking where a task was spawned
  ([#7440)])

[#7440]: https://github.com/tokio-rs/tokio/pull/7440
This commit is contained in:
Eliza Weisman
2025-07-04 19:27:35 +00:00
committed by GitHub
parent a0d5b8ab30
commit ab3ff69cf2
4 changed files with 18 additions and 4 deletions
+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.46.0", features = ["full"] }
tokio = { version = "1.46.1", features = ["full"] }
```
Then, on your main.rs: