Bump version to v0.1.4 (#252)

This also bumps:

* tokio-executor: v0.1.1
* tokio-reactor: v0.1.1
* tokio-threadpool: v0.1.1
This commit is contained in:
Carl Lerche
2018-03-23 10:34:42 -07:00
committed by GitHub
parent 23d95b44e7
commit 9cffda59c9
15 changed files with 64 additions and 28 deletions
+6
View File
@@ -1,3 +1,9 @@
# 0.1.1 (March 22, 2018)
* Fix threading bugs (#227)
* Fix notification bugs (#243)
* Optionally support futures 0.2 (#172)
# 0.1.0 (March 09, 2018)
* Initial release
+5 -3
View File
@@ -5,7 +5,7 @@ name = "tokio-reactor"
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
version = "0.1.0"
version = "0.1.1"
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
readme = "README.md"
@@ -18,12 +18,14 @@ Event loop that drives Tokio I/O resources.
categories = ["asynchronous", "network-programming"]
[dependencies]
futures = "0.1.18"
futures = "0.1.19"
log = "0.4.1"
mio = "0.6.14"
slab = "0.4.0"
tokio-executor = { version = "0.1.0", path = "../tokio-executor" }
tokio-executor = { version = "0.1.1", path = "../tokio-executor" }
tokio-io = { version = "0.1.6", path = "../tokio-io" }
# Futures 0.2 integration
futures2 = { version = "0.1", path = "../futures2", optional = true }
[features]
+1 -1
View File
@@ -27,7 +27,7 @@
//! [`PollEvented`]: struct.PollEvented.html
//! [reactor module]: https://docs.rs/tokio/0.1/tokio/reactor/index.html
#![doc(html_root_url = "https://docs.rs/tokio-reactor/0.1.0")]
#![doc(html_root_url = "https://docs.rs/tokio-reactor/0.1.1")]
#![deny(missing_docs, warnings, missing_debug_implementations)]
#[macro_use]