diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 000000000..eb839a25d --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,3 @@ +# 0.1.0 (unreleased) + +* Initial crate released based on [RFC](https://github.com/tokio-rs/tokio-rfcs/pull/3). diff --git a/Cargo.toml b/Cargo.toml index 81f7e364c..0ad15e9ea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,12 @@ [package] name = "tokio" + +# When releasing to crates.io: +# - Update html_root_url. +# - Update CHANGELOG.md. +# - Create "v0.1.x" git tag. version = "0.1.0" + authors = ["Tokio Authors "] license = "MIT/Apache-2.0" repository = "https://github.com/tokio-rs/tokio" diff --git a/src/lib.rs b/src/lib.rs index e7d308201..414ac2774 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -86,7 +86,7 @@ //! } //! ``` -#![doc(html_root_url = "https://docs.rs/tokio-core/0.1")] +#![doc(html_root_url = "https://docs.rs/tokio/0.1.0")] #![deny(missing_docs)] #![deny(warnings)] #![warn(missing_debug_implementations)]