Release 2.4.0

This commit is contained in:
Taiki Endo 2022-10-24 00:19:07 +09:00
parent bf6cbcc31c
commit ca52490c9d
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,9 @@
# Version 2.4.0
- Fix the build error on illumos and Solaris (#43)
- Bump MSRV to 1.47 (#40)
- Optimize `Poller` internal representation (#40)
# Version 2.3.0
- Implement `AsRawFd` for `Poller` on most Unix systems (#39)

View File

@ -3,15 +3,13 @@ name = "polling"
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v2.x.y" git tag
version = "2.3.0"
version = "2.4.0"
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
rust-version = "1.47"
description = "Portable interface to epoll, kqueue, event ports, and wepoll"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/smol-rs/polling"
homepage = "https://github.com/smol-rs/polling"
documentation = "https://docs.rs/polling"
keywords = ["mio", "epoll", "kqueue", "iocp", "wepoll"]
categories = ["asynchronous", "network-programming", "os"]
exclude = ["/.*"]