summaryrefslogtreecommitdiffstats
path: root/tokio-codec
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-codec
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-codec')
-rw-r--r--tokio-codec/CHANGELOG.md6
-rw-r--r--tokio-codec/Cargo.toml5
-rw-r--r--tokio-codec/src/lib.rs6
3 files changed, 11 insertions, 6 deletions
diff --git a/tokio-codec/CHANGELOG.md b/tokio-codec/CHANGELOG.md
index 5c3ac558..02cec7a4 100644
--- a/tokio-codec/CHANGELOG.md
+++ b/tokio-codec/CHANGELOG.md
@@ -1,3 +1,7 @@
-# # 0.1.0 (June 13, 2018)
+# 0.1.1 (September 26, 2018)
+
+* Allow setting max line length with `LinesCodec` (#632)
+
+# 0.1.0 (June 13, 2018)
* Initial release (#353)
diff --git a/tokio-codec/Cargo.toml b/tokio-codec/Cargo.toml
index b9dfe9ef..756e8ff1 100644
--- a/tokio-codec/Cargo.toml
+++ b/tokio-codec/Cargo.toml
@@ -3,14 +3,15 @@ name = "tokio-codec"
# When releasing to crates.io:
# - Update html_root_url.
+# - Update doc URL.
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
-version = "0.1.0"
+version = "0.1.1"
authors = ["Carl Lerche <me@carllerche.com>", "Bryan Burgers <bryan@burgers.io>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
-documentation = "https://docs.rs/tokio-codec/0.1"
+documentation = "https://docs.rs/tokio-codec/0.1.1/tokio_codec"
description = """
Utilities for encoding and decoding frames.
"""
diff --git a/tokio-codec/src/lib.rs b/tokio-codec/src/lib.rs
index 2b26b542..de292096 100644
--- a/tokio-codec/src/lib.rs
+++ b/tokio-codec/src/lib.rs
@@ -1,3 +1,6 @@
+#![deny(missing_docs, missing_debug_implementations, warnings)]
+#![doc(html_root_url = "https://docs.rs/tokio-codec/0.1.1")]
+
//! Utilities for encoding and decoding frames.
//!
//! Contains adapters to go from streams of bytes, [`AsyncRead`] and
@@ -10,9 +13,6 @@
//! [`Stream`]: #
//! [transports]: #
-#![deny(missing_docs, missing_debug_implementations, warnings)]
-#![doc(html_root_url = "https://docs.rs/tokio-codec/0.1.0")]
-
extern crate bytes;
extern crate tokio_io;