Add CHANGELOG stub.

This commit is contained in:
Carl Lerche 2018-01-30 13:26:59 -08:00
parent c1c06f8ac1
commit a998367002
3 changed files with 10 additions and 1 deletions

3
CHANGELOG.md Normal file
View File

@ -0,0 +1,3 @@
# 0.1.0 (unreleased)
* Initial crate released based on [RFC](https://github.com/tokio-rs/tokio-rfcs/pull/3).

View File

@ -1,6 +1,12 @@
[package] [package]
name = "tokio" name = "tokio"
# When releasing to crates.io:
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
version = "0.1.0" version = "0.1.0"
authors = ["Tokio Authors <authors@tokio.rs>"] authors = ["Tokio Authors <authors@tokio.rs>"]
license = "MIT/Apache-2.0" license = "MIT/Apache-2.0"
repository = "https://github.com/tokio-rs/tokio" repository = "https://github.com/tokio-rs/tokio"

View File

@ -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(missing_docs)]
#![deny(warnings)] #![deny(warnings)]
#![warn(missing_debug_implementations)] #![warn(missing_debug_implementations)]