summaryrefslogtreecommitdiffstats
path: root/tokio-io
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2018-09-26 22:32:51 -0700
committerGitHub <noreply@github.com>2018-09-26 22:32:51 -0700
commitcab9a44e0192e9d85bd3a3266c592b5e48511c94 (patch)
treec9edd7ac6400e6df969baff1ca6bad37cb1ff6d1 /tokio-io
parent964afb2ce30045caece2c143cd105b7a2c221b8e (diff)
Bump version to v0.1.9 (#666)
This also includes bumps to subcrates. * tokio-async-await (0.1.4) * tokio-codec (0.1.1) * tokio-current-thread (0.1.2) * tokio-executor (0.1.5) * tokio-io (0.1.9) * tokio-reactor (0.1.6) * tokio-tcp (0.1.2) * tokio-threadpool (0.1.7) * tokio-timer (0.2.7)
Diffstat (limited to 'tokio-io')
-rw-r--r--tokio-io/CHANGELOG.md5
-rw-r--r--tokio-io/Cargo.toml4
-rw-r--r--tokio-io/src/lib.rs2
3 files changed, 8 insertions, 3 deletions
diff --git a/tokio-io/CHANGELOG.md b/tokio-io/CHANGELOG.md
index 48360119..0ceecc93 100644
--- a/tokio-io/CHANGELOG.md
+++ b/tokio-io/CHANGELOG.md
@@ -1,3 +1,8 @@
+# 0.1.9 (September 27, 2018)
+
+* Fix bug in `AsyncRead::split()` (#655).
+* Fix non-terminating loop in `length_delimited::FramedWrite` (#576).
+
# 0.1.8 (August 23, 2018)
* Documentation improvements
diff --git a/tokio-io/Cargo.toml b/tokio-io/Cargo.toml
index 6591861f..5e0a756c 100644
--- a/tokio-io/Cargo.toml
+++ b/tokio-io/Cargo.toml
@@ -6,12 +6,12 @@ name = "tokio-io"
# - Update CHANGELOG.md.
# - Update doc URL.
# - Create "v0.1.x" git tag.
-version = "0.1.8"
+version = "0.1.9"
authors = ["Carl Lerche <me@carllerche.com>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
-documentation = "https://docs.rs/tokio-io/0.1.8/tokio_io"
+documentation = "https://docs.rs/tokio-io/0.1.9/tokio_io"
description = """
Core I/O primitives for asynchronous I/O in Rust.
"""
diff --git a/tokio-io/src/lib.rs b/tokio-io/src/lib.rs
index 7622ea59..f45c3a33 100644
--- a/tokio-io/src/lib.rs
+++ b/tokio-io/src/lib.rs
@@ -1,5 +1,5 @@
#![deny(missing_docs, missing_debug_implementations, warnings)]
-#![doc(html_root_url = "https://docs.rs/tokio-io/0.1.8")]
+#![doc(html_root_url = "https://docs.rs/tokio-io/0.1.9")]
//! Core I/O traits and combinators when working with Tokio.
//!