process: Bump to 0.2.0

This commit is contained in:
Alex Crichton
2019-06-24 16:56:48 -07:00
committed by Ivan Petkov
parent f20e7a4d2b
commit f3f99b723f
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -1,11 +1,11 @@
[package]
name = "tokio-process"
version = "0.1.0"
version = "0.2.0"
authors = ["Alex Crichton <[email protected]>"]
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.
"""
+2 -2
View File
@@ -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: