File tree Expand file tree Collapse file tree 3 files changed +18
-3
lines changed Expand file tree Collapse file tree 3 files changed +18
-3
lines changed Original file line number Diff line number Diff line change
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
+
1
16
# 0.7.4
2
17
3
18
## Fixes
Original file line number Diff line number Diff line change @@ -6,11 +6,11 @@ name = "mio"
6
6
# - Update CHANGELOG.md.
7
7
# - Update doc URL.
8
8
# - Create git tag
9
- version = " 0.7.4 "
9
+ version = " 0.7.5 "
10
10
license = " MIT"
11
11
authors = [
" Carl Lerche <[email protected] >" ]
12
12
description = " Lightweight non-blocking IO"
13
- documentation = " https://docs.rs/mio/0.7.4 "
13
+ documentation = " https://docs.rs/mio/0.7.5 "
14
14
homepage = " https://github.com/tokio-rs/mio"
15
15
repository = " https://github.com/tokio-rs/mio"
16
16
readme = " README.md"
Original file line number Diff line number Diff line change 1
- #![ doc( html_root_url = "https://docs.rs/mio/0.7.4 " ) ]
1
+ #![ doc( html_root_url = "https://docs.rs/mio/0.7.5 " ) ]
2
2
#![ deny(
3
3
missing_docs,
4
4
missing_debug_implementations,
You can’t perform that action at this time.
0 commit comments