Bump version to v0.1.7 (#396)

This also bumps the versions of:

* tokio-threadpool
* tokio-timer
This commit is contained in:
Carl Lerche
2018-06-06 20:14:35 -07:00
committed by GitHub
parent db620b42ec
commit dba5c27296
8 changed files with 34 additions and 8 deletions
+8 -1
View File
@@ -1,7 +1,14 @@
# 0.2.2 (May 2, 2018)
# 0.2.4 (June 6, 2018)
* Add `sleep` function for easy interval delays (#347).
* Provide `clock::now()`, a configurable source of time (#381).
# 0.2.3 (May 2, 2018)
* Improve parking semantics (#327).
# 0.2.2 (Skipped due to failure in counting module)
# 0.2.1 (April 2, 2018)
* Fix build on 32-bit systems (#274).
+5 -1
View File
@@ -1,6 +1,10 @@
[package]
name = "tokio-timer"
version = "0.2.3"
# When releasing to crates.io:
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Create "v0.2.x" git tag.
version = "0.2.4"
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
readme = "README.md"
+1 -1
View File
@@ -18,7 +18,7 @@
//! [`Interval`]: struct.Interval.html
//! [`Timer`]: timer/struct.Timer.html
#![doc(html_root_url = "https://docs.rs/tokio-timer/0.2.0")]
#![doc(html_root_url = "https://docs.rs/tokio-timer/0.2.4")]
#![deny(missing_docs, warnings, missing_debug_implementations)]
extern crate tokio_executor;