aboutsummaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorChih-hung Hsieh <chh@google.com>2020-11-05 23:03:37 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2020-11-05 23:03:37 +0000
commit8414138e74aa469015108049230e70b0a325c6e9 (patch)
treedeaa1e4c18a6a0624b02ead4f7fdd5bf985235d1 /CHANGELOG.md
parent3c582418efff72b2eb8934627f9ee0281ed79163 (diff)
parent3a1a50620397b347db105e65b3cab650c2c7bb72 (diff)
downloadmio-8414138e74aa469015108049230e70b0a325c6e9.tar.gz
Merge "Upgrade rust/crates/mio to 0.7.5"
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5827f0c..1ca5125 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,18 @@
+# 0.7.5
+
+## Added
+
+* `TcpSocket::get_localaddr()` retrieves local address
+ (https://github.com/tokio-rs/mio/commit/b41a022b2242eef1969c70c8ba93e04c528dba47)
+* `TcpSocket::set_reuseport()` & `TcpSocket::get_reuseport()` configures and reads SO_REUSEPORT
+ (https://github.com/tokio-rs/mio/commit/183bbe409ab69cbf9db41d0263b41ec86202d9a0)
+* `unix:pipe()` a wrapper around pipe(2) sys call
+ (https://github.com/tokio-rs/mio/commit/2b7c0967a7362303946deb3d4ca2ae507af6c72d)
+* Add a check that a single Waker is active per Poll instance (only in debug mode)
+ (https://github.com/tokio-rs/mio/commit/f4874f28b32efcf4841691884c65a89734d96a56)
+* Added `Interest:remove()`
+ (https://github.com/tokio-rs/mio/commit/b8639c3d9ac07bb7e2e27685680c8a6510fa1357)
+
# 0.7.4
## Fixes