Skip to content

Commit 27fbd5f

Browse files
Zeki SherifThomasdezeeuw
authored andcommitted
Prepare v0.7.5 release
1 parent b41a022 commit 27fbd5f

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# 0.7.5
2+
3+
## Added
4+
5+
* `TcpSocket::get_localaddr()` retrieves local address
6+
(https://github.com/tokio-rs/mio/commit/b41a022b2242eef1969c70c8ba93e04c528dba47)
7+
* `TcpSocket::set_reuseport()` & `TcpSocket::get_reuseport()` configures and reads SO_REUSEPORT
8+
(https://github.com/tokio-rs/mio/commit/183bbe409ab69cbf9db41d0263b41ec86202d9a0)
9+
* `unix:pipe()` a wrapper around pipe(2) sys call
10+
(https://github.com/tokio-rs/mio/commit/2b7c0967a7362303946deb3d4ca2ae507af6c72d)
11+
* Add a check that a single Waker is active per Poll instance (only in debug mode)
12+
(https://github.com/tokio-rs/mio/commit/f4874f28b32efcf4841691884c65a89734d96a56)
13+
* Added `Interest:remove()`
14+
(https://github.com/tokio-rs/mio/commit/b8639c3d9ac07bb7e2e27685680c8a6510fa1357)
15+
116
# 0.7.4
217

318
## Fixes

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ name = "mio"
66
# - Update CHANGELOG.md.
77
# - Update doc URL.
88
# - Create git tag
9-
version = "0.7.4"
9+
version = "0.7.5"
1010
license = "MIT"
1111
authors = ["Carl Lerche <[email protected]>"]
1212
description = "Lightweight non-blocking IO"
13-
documentation = "https://docs.rs/mio/0.7.4"
13+
documentation = "https://docs.rs/mio/0.7.5"
1414
homepage = "https://github.com/tokio-rs/mio"
1515
repository = "https://github.com/tokio-rs/mio"
1616
readme = "README.md"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/mio/0.7.4")]
1+
#![doc(html_root_url = "https://docs.rs/mio/0.7.5")]
22
#![deny(
33
missing_docs,
44
missing_debug_implementations,

0 commit comments

Comments
 (0)