diff --git a/CHANGELOG.md b/CHANGELOG.md index 556bd90b7..bfb1af7be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.6.22 (May 01, 2020) + +### Added +- Add support for illumos target (#1294) + # 0.6.21 (November 27, 2019) ### Fixed diff --git a/Cargo.toml b/Cargo.toml index 3c992afa9..e60df467a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,20 +6,22 @@ name = "mio" # - Update CHANGELOG.md. # - Update doc URL. # - Create git tag -version = "0.6.21" +version = "0.6.22" license = "MIT" authors = ["Carl Lerche "] description = "Lightweight non-blocking IO" -documentation = "https://docs.rs/mio/0.6.21/mio/" -homepage = "https://github.com/carllerche/mio" -repository = "https://github.com/carllerche/mio" +documentation = "https://docs.rs/mio/0.6.22/mio/" +homepage = "https://github.com/tokio-rs/mio" +repository = "https://github.com/tokio-rs/mio" readme = "README.md" keywords = ["io", "async", "non-blocking"] categories = ["asynchronous"] -exclude = [ - ".gitignore", - ".travis.yml", - "deploy.sh", +include = [ + "Cargo.toml", + "LICENSE", + "README.md", + "CHANGELOG.md", + "src/**/*.rs" ] [features] diff --git a/src/lib.rs b/src/lib.rs index 1d2f500fd..6b57296d3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/mio/0.6.21")] +#![doc(html_root_url = "https://docs.rs/mio/0.6.22")] // Mio targets old versions of the Rust compiler. In order to do this, uses // deprecated APIs. #![allow(bare_trait_objects, deprecated, unknown_lints)]