From 3516d9a1460e75028cb6a96c39ff3baa92f083e1 Mon Sep 17 00:00:00 2001 From: Patrick Mooney Date: Fri, 1 May 2020 13:03:29 -0500 Subject: [PATCH 1/3] Update repository URLs --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3c992afa9..542813607 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,8 +11,8 @@ 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" +homepage = "https://github.com/tokio-rs/mio" +repository = "https://github.com/tokio-rs/mio" readme = "README.md" keywords = ["io", "async", "non-blocking"] categories = ["asynchronous"] From 4003895fb87799ae5b92a6f68c3301710605e073 Mon Sep 17 00:00:00 2001 From: Patrick Mooney Date: Fri, 1 May 2020 13:13:34 -0500 Subject: [PATCH 2/3] Update cargo package excludes/includes --- Cargo.toml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 542813607..ab4ec40c0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,10 +16,12 @@ 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] From 455553466224f0145a92c717780ef7c6ba71388a Mon Sep 17 00:00:00 2001 From: Patrick Mooney Date: Fri, 1 May 2020 13:15:47 -0500 Subject: [PATCH 3/3] Release v0.6.22 --- CHANGELOG.md | 5 +++++ Cargo.toml | 4 ++-- src/lib.rs | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) 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 ab4ec40c0..e60df467a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,11 +6,11 @@ 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/" +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" 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)]