Bump version to 0.1.12 (#718)

Also bumps the following sub-crates:

* tokio-fs (0.1.4)
* tokio-io (0.1.10)
* tokio-signal (0.2.6)
* tokio-threadpool (0.1.8)
* tokio-uds (0.2.3)
This commit is contained in:
Carl Lerche
2018-10-23 22:00:49 -07:00
committed by GitHub
parent b0f001a05a
commit f929576f0e
16 changed files with 55 additions and 21 deletions
+5
View File
@@ -1,3 +1,8 @@
# 0.1.10 (October 23, 2018)
* Expose inner codec from `Framed` (#686).
* Implement AsyncRead::prepare_uninitialized_buffer for Take and Chain (#678).
# 0.1.9 (September 27, 2018)
* Fix bug in `AsyncRead::split()` (#655).
+2 -2
View File
@@ -6,12 +6,12 @@ name = "tokio-io"
# - Update CHANGELOG.md.
# - Update doc URL.
# - Create "v0.1.x" git tag.
version = "0.1.9"
version = "0.1.10"
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
documentation = "https://docs.rs/tokio-io/0.1.9/tokio_io"
documentation = "https://docs.rs/tokio-io/0.1.10/tokio_io"
description = """
Core I/O primitives for asynchronous I/O in Rust.
"""
+1 -1
View File
@@ -1,5 +1,5 @@
#![deny(missing_docs, missing_debug_implementations, warnings)]
#![doc(html_root_url = "https://docs.rs/tokio-io/0.1.9")]
#![doc(html_root_url = "https://docs.rs/tokio-io/0.1.10")]
//! Core I/O traits and combinators when working with Tokio.
//!