diff --git a/actix-server/CHANGES.md b/actix-server/CHANGES.md index 7dfd9999..127e7262 100644 --- a/actix-server/CHANGES.md +++ b/actix-server/CHANGES.md @@ -1,5 +1,13 @@ # Changes +## [1.0.2] - 2020-02-26 + +### Fixed + +* Avoid error by calling `reregister()` on Windows [#103] + +[#103]: https://github.com/actix/actix-net/pull/103 + ## [1.0.1] - 2019-12-29 ### Changed diff --git a/actix-server/Cargo.toml b/actix-server/Cargo.toml index e18fa615..eef518e6 100644 --- a/actix-server/Cargo.toml +++ b/actix-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-server" -version = "1.0.1" +version = "1.0.2" authors = ["Nikolay Kim "] description = "Actix server - General purpose tcp server" keywords = ["network", "framework", "async", "futures"] @@ -34,6 +34,7 @@ futures = "0.3.1" slab = "0.4" # unix domain sockets +# FIXME: Remove it and use mio own uds feature once mio 0.7 is released mio-uds = { version = "0.6.7" } [dev-dependencies]