Skip to content

Commit 98c9a77

Browse files
authored
prepare v0.2.3 release (#1912)
1 parent e00c496 commit 98c9a77

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

tokio/CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
# 0.2.3 (December 6, 2019)
2+
3+
### Added
4+
- read / write integers using `AsyncReadExt` and `AsyncWriteExt` (#1863).
5+
- `read_buf` / `write_buf` for reading / writing `Buf` / `BufMut` (#1881).
6+
- `TcpStream::poll_peek` - pollable API for performing TCP peek (#1864).
7+
- `sync::oneshot::error::TryRecvError` provides variants to detect the error
8+
kind (#1874).
9+
- `LocalSet::block_on` accepts `!'static` task (#1882).
10+
- `task::JoinError` is now `Sync` (#1888).
11+
- impl conversions between `tokio::time::Instant` and
12+
`std::time::Instant` (#1904).
13+
14+
### Fixes
15+
- calling `spawn_blocking` after runtime shutdown (#1875).
16+
- `LocalSet` drop inifinite loop (#1892).
17+
- `LocalSet` hang under load (#1905).
18+
- improved documentation (#1865, #1866, #1868, #1874, #1876, #1911).
19+
120
# 0.2.2 (November 29, 2019)
221

322
### Fixes

tokio/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ name = "tokio"
88
# - README.md
99
# - Update CHANGELOG.md.
1010
# - Create "v0.2.x" git tag.
11-
version = "0.2.2"
11+
version = "0.2.3"
1212
edition = "2018"
1313
authors = ["Tokio Contributors <[email protected]>"]
1414
license = "MIT"
1515
readme = "README.md"
16-
documentation = "https://docs.rs/tokio/0.2.2/tokio/"
16+
documentation = "https://docs.rs/tokio/0.2.3/tokio/"
1717
repository = "https://github.com/tokio-rs/tokio"
1818
homepage = "https://tokio.rs"
1919
description = """

tokio/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/tokio/0.2.2")]
1+
#![doc(html_root_url = "https://docs.rs/tokio/0.2.3")]
22
#![warn(
33
missing_debug_implementations,
44
missing_docs,

0 commit comments

Comments
 (0)