Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions tokio/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# 0.2.25 (January 28, 2021)

### Changes

- chore: upgrade mio dependency (#3207)
- runtime: update panic messages to include version (#3460)

### Fixes

- task: add missing feature flags for `task_local` (#3236)

# 0.2.24 (December 7, 2020)

### Fixes
Expand Down
4 changes: 2 additions & 2 deletions tokio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ name = "tokio"
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.2.x" git tag.
version = "0.2.24"
version = "0.2.25"
edition = "2018"
authors = ["Tokio Contributors <[email protected]>"]
license = "MIT"
readme = "README.md"
documentation = "https://docs.rs/tokio/0.2.24/tokio/"
documentation = "https://docs.rs/tokio/0.2.25/tokio/"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
description = """
Expand Down
2 changes: 1 addition & 1 deletion tokio/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tokio/0.2.24")]
#![doc(html_root_url = "https://docs.rs/tokio/0.2.25")]
#![allow(
clippy::cognitive_complexity,
clippy::large_enum_variant,
Expand Down