process: Bump to 0.2.1

This commit is contained in:
Ivan Petkov
2019-06-24 16:56:52 -07:00
parent 7b3e4b98ac
commit 827e77e71e
4 changed files with 8 additions and 5 deletions
+4 -1
View File
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## [Unreleased]
## [0.2.1] - 2018-05-18
### Changed
- **Breaking**: asynchronous spawning of a child process now requires using a
reactor handle from the `tokio` crate instead of the `tokio-core` crate
@@ -55,7 +57,8 @@ the locally vendored `Command` type.
## 0.1.0 - 2016-09-10
- First release!
[Unreleased]: https://github.com/alexcrichton/tokio-process/compare/0.1.6...HEAD
[Unreleased]: https://github.com/alexcrichton/tokio-process/compare/0.2.1...HEAD
[0.2.1]: https://github.com/alexcrichton/tokio-process/compare/0.1.6...0.2.1
[0.1.6]: https://github.com/alexcrichton/tokio-process/compare/0.1.5...0.1.6
[0.1.5]: https://github.com/alexcrichton/tokio-process/compare/0.1.4...0.1.5
[0.1.4]: https://github.com/alexcrichton/tokio-process/compare/0.1.3...0.1.4
+2 -2
View File
@@ -3,8 +3,8 @@ name = "tokio-process"
# When releasing to crates.io:
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Create "vX.Y.Z" git tag.
version = "0.1.6"
# - Create "X.Y.Z" git tag.
version = "0.2.1"
authors = ["Alex Crichton <[email protected]>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/alexcrichton/tokio-process"
+1 -1
View File
@@ -14,7 +14,7 @@ First, add this to your `Cargo.toml`:
```toml
[dependencies]
tokio-process = "0.1.1"
tokio-process = "0.2"
```
Next, add this to your crate:
+1 -1
View File
@@ -118,7 +118,7 @@
#![warn(missing_debug_implementations)]
#![deny(missing_docs)]
#![doc(html_root_url = "https://docs.rs/tokio-process/0.1")]
#![doc(html_root_url = "https://docs.rs/tokio-process/0.2")]
extern crate futures;
extern crate tokio_io;