Skip to content

Commit

Permalink
chore: prepare tokio v0.2.14 release (#2356)
Browse files Browse the repository at this point in the history
  • Loading branch information
carllerche authored Apr 1, 2020
1 parent caa7e18 commit f01136b
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 10 deletions.
30 changes: 23 additions & 7 deletions tokio/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,25 @@
# 0.2.13 (February 28, 2019)
# 0.2.14 (April 1, 2020)

### Fixes
- rt: concurrency bug in scheduler (#2273).
- rt: concurrency bug with shell runtime (#2333).
- test-util: correct pause/resume of time (#2253).
- time: `DelayQueue` correct wakeup after `insert` (#2285).

### Added
- io: impl `RawFd`, `AsRawHandle` for std io types (#2335).
- rt: automatic cooperative task yielding (#2160, #2343, #2349).
- sync: `RwLock::into_inner` (#2321).

### Changed
- sync: semaphore, mutex internals rewritten to avoid allocations (#2325).

# 0.2.13 (February 28, 2020)

### Fixes
- macros: unresolved import in `pin!` (#2281).

# 0.2.12 (February 27, 2019)
# 0.2.12 (February 27, 2020)

### Fixes
- net: `UnixStream::poll_shutdown` should call `shutdown(Write)` (#2245).
Expand All @@ -30,7 +46,7 @@
for channel capacity (#2227).
- time: impl `Ord` and `Hash` for `Instant` (#2239).

# 0.2.11 (January 27, 2019)
# 0.2.11 (January 27, 2020)

### Fixes
- docs: misc fixes and tweaks (#2155, #2103, #2027, #2167, #2175).
Expand All @@ -51,7 +67,7 @@
- sync: impl `Eq`, `PartialEq` for `oneshot::RecvError` (#2168).
- task: methods for inspecting the `JoinError` cause (#2051).

# 0.2.10 (January 21, 2019)
# 0.2.10 (January 21, 2020)

### Fixes
- `#[tokio::main]` when `rt-core` feature flag is not enabled (#2139).
Expand All @@ -73,20 +89,20 @@
- `StreamExt::merge` combines two streams, yielding values as they become ready (#2091).
- Task-local storage (#2126).

# 0.2.9 (January 9, 2019)
# 0.2.9 (January 9, 2020)

### Fixes
- `AsyncSeek` impl for `File` (#1986).
- rt: shutdown deadlock in `threaded_scheduler` (#2074, #2082).
- rt: memory ordering when dropping `JoinHandle` (#2044).
- docs: misc API documentation fixes and improvements.

# 0.2.8 (January 7, 2019)
# 0.2.8 (January 7, 2020)

### Fixes
- depend on new version of `tokio-macros`.

# 0.2.7 (January 7, 2019)
# 0.2.7 (January 7, 2020)

### Fixes
- potential deadlock when dropping `basic_scheduler` Runtime.
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.13"
version = "0.2.14"
edition = "2018"
authors = ["Tokio Contributors <[email protected]>"]
license = "MIT"
readme = "README.md"
documentation = "https://docs.rs/tokio/0.2.13/tokio/"
documentation = "https://docs.rs/tokio/0.2.14/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.13")]
#![doc(html_root_url = "https://docs.rs/tokio/0.2.14")]
#![allow(
clippy::cognitive_complexity,
clippy::large_enum_variant,
Expand Down

0 comments on commit f01136b

Please sign in to comment.