diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d2586aad..556bd90b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.6.21 (November 27, 2019) + +### Fixed +- remove `=` dependency on `cfg-if`. + # 0.6.20 (November 21, 2019) ### Fixed diff --git a/Cargo.toml b/Cargo.toml index 317a088ea..948df6556 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.20" +version = "0.6.21" license = "MIT" authors = ["Carl Lerche "] description = "Lightweight non-blocking IO" -documentation = "https://docs.rs/mio/0.6.20/mio/" +documentation = "https://docs.rs/mio/0.6.21/mio/" homepage = "https://github.com/carllerche/mio" repository = "https://github.com/carllerche/mio" readme = "README.md" diff --git a/src/lib.rs b/src/lib.rs index 2369e4cbe..1d2f500fd 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/mio/0.6.20")] +#![doc(html_root_url = "https://docs.rs/mio/0.6.21")] // Mio targets old versions of the Rust compiler. In order to do this, uses // deprecated APIs. #![allow(bare_trait_objects, deprecated, unknown_lints)]