diff --git a/Cargo.toml b/Cargo.toml index f8f540ee0..575b35b50 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "tokio-process" -version = "0.1.0" +version = "0.2.0" authors = ["Alex Crichton "] license = "MIT/Apache-2.0" repository = "https://github.com/alexcrichton/tokio-process" homepage = "https://github.com/alexcrichton/tokio-process" -documentation = "https://alexcrichton.github.io/tokio-process" +documentation = "https://docs.rs/tokio-process/0.2" description = """ An implementation of an asynchronous process management backed futures. """ diff --git a/README.md b/README.md index 828da1a46..0d065c0fe 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ An implementation of process management for Tokio [![Build status](https://ci.appveyor.com/api/projects/status/43c8g7fy801e5902?svg=true)](https://ci.appveyor.com/project/alexcrichton/tokio-process) [![Crates.io](https://img.shields.io/crates/v/tokio-process.svg?maxAge=2592000)](https://crates.io/crates/tokio-process) -[Documentation](https://alexcrichton.github.io/tokio-process) +[Documentation](https://docs.rs/tokio-process/0.2) ## Usage @@ -14,7 +14,7 @@ First, add this to your `Cargo.toml`: ```toml [dependencies] -tokio-process = "0.1" +tokio-process = "0.2" ``` Next, add this to your crate: