diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b51118e7..9740466c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,8 @@ Version 0.7 of Mio contains various major changes compared to version 0.6. Overall a large number of API changes have been made to reduce the complexity of the implementation and remove overhead where possible. -Please refer to the upgrade guide in docs/upgrade_guide.md for additional +Please refer to the [blog post about +0.7-alpha.1](https://tokio.rs/blog/2019-12-mio-v0.7-alpha.1/) for additional information. ## Added diff --git a/Cargo.toml b/Cargo.toml index 64496902d..924b28c9e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,11 +6,11 @@ name = "mio" # - Update CHANGELOG.md. # - Update doc URL. # - Create git tag -version = "0.7.0-alpha.1" +version = "0.7.0" license = "MIT" authors = ["Carl Lerche "] description = "Lightweight non-blocking IO" -documentation = "https://docs.rs/mio/0.7.0-alpha.1/mio/" +documentation = "https://docs.rs/mio/0.7.0" 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 627a15e87..1853582da 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/mio/0.7.0-alpha.1")] +#![doc(html_root_url = "https://docs.rs/mio/0.7.0")] #![deny( missing_docs, missing_debug_implementations,