summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md6
-rw-r--r--Cargo.toml4
-rw-r--r--LICENSE2
-rw-r--r--README.md2
-rw-r--r--src/lib.rs2
-rw-r--r--tokio-async-await/Cargo.toml3
-rw-r--r--tokio-async-await/LICENSE2
-rw-r--r--tokio-async-await/src/lib.rs2
-rw-r--r--tokio-buf/LICENSE2
-rw-r--r--tokio-channel/LICENSE2
-rw-r--r--tokio-codec/LICENSE2
-rw-r--r--tokio-current-thread/LICENSE2
-rw-r--r--tokio-executor/CHANGELOG.md5
-rw-r--r--tokio-executor/Cargo.toml6
-rw-r--r--tokio-executor/LICENSE2
-rw-r--r--tokio-executor/README.md2
-rw-r--r--tokio-executor/src/lib.rs2
-rw-r--r--tokio-fs/CHANGELOG.md4
-rw-r--r--tokio-fs/Cargo.toml6
-rw-r--r--tokio-fs/LICENSE2
-rw-r--r--tokio-fs/README.md2
-rw-r--r--tokio-fs/src/lib.rs2
-rw-r--r--tokio-io/CHANGELOG.md4
-rw-r--r--tokio-io/Cargo.toml6
-rw-r--r--tokio-io/LICENSE2
-rw-r--r--tokio-io/README.md2
-rw-r--r--tokio-io/src/lib.rs2
-rw-r--r--tokio-reactor/CHANGELOG.md5
-rw-r--r--tokio-reactor/Cargo.toml6
-rw-r--r--tokio-reactor/LICENSE2
-rw-r--r--tokio-reactor/README.md2
-rw-r--r--tokio-reactor/src/lib.rs2
-rw-r--r--tokio-signal/LICENSE2
-rw-r--r--tokio-tcp/CHANGELOG.md5
-rw-r--r--tokio-tcp/Cargo.toml6
-rw-r--r--tokio-tcp/LICENSE2
-rw-r--r--tokio-tcp/README.md2
-rw-r--r--tokio-tcp/src/lib.rs2
-rw-r--r--tokio-threadpool/CHANGELOG.md8
-rw-r--r--tokio-threadpool/Cargo.toml4
-rw-r--r--tokio-threadpool/LICENSE2
-rw-r--r--tokio-threadpool/README.md2
-rw-r--r--tokio-threadpool/src/lib.rs2
-rw-r--r--tokio-timer/LICENSE2
-rw-r--r--tokio-tls/CHANGELOG.md4
-rw-r--r--tokio-tls/Cargo.toml4
-rw-r--r--tokio-tls/LICENSE2
-rw-r--r--tokio-tls/README.md2
-rw-r--r--tokio-tls/src/lib.rs6
-rw-r--r--tokio-udp/LICENSE2
-rw-r--r--tokio-uds/CHANGELOG.md4
-rw-r--r--tokio-uds/Cargo.toml6
-rw-r--r--tokio-uds/LICENSE2
-rw-r--r--tokio-uds/README.md2
-rw-r--r--tokio-uds/src/lib.rs2
55 files changed, 115 insertions, 57 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c22810eb..06eb399f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,12 @@
This changelog only applies to the `tokio` crate proper. Each sub crate
maintains its own changelog tracking changes made in each respective sub crate.
+# 0.1.14 (January 6, 2019)
+
+* Use feature flags to break up the crate, allowing users to pick & choose
+ components (#808).
+* Export `UnixDatagram` and `UnixDatagramFramed` (#772).
+
# 0.1.13 (November 21, 2018)
* Fix `Runtime::reactor()` when no tasks are spawned (#721).
diff --git a/Cargo.toml b/Cargo.toml
index 15343975..a71ec5f8 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,11 +6,11 @@ name = "tokio"
# - Update CHANGELOG.md.
# - Update doc URL.
# - Create "v0.1.x" git tag.
-version = "0.1.13"
+version = "0.1.14"
authors = ["Carl Lerche <me@carllerche.com>"]
license = "MIT"
readme = "README.md"
-documentation = "https://docs.rs/tokio/0.1.13/tokio/"
+documentation = "https://docs.rs/tokio/0.1.14/tokio/"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
description = """
diff --git a/LICENSE b/LICENSE
index 38c1e27b..cdb28b4b 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2018 Tokio Contributors
+Copyright (c) 2019 Tokio Contributors
Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
diff --git a/README.md b/README.md
index 32ec4968..9a2f10d1 100644
--- a/README.md
+++ b/README.md
@@ -31,7 +31,7 @@ the Rust programming language. It is:
[Website](https://tokio.rs) |
[Guides](https://tokio.rs/docs/getting-started/hello-world/) |
-[API Docs](https://docs.rs/tokio) |
+[API Docs](https://docs.rs/tokio/0.1.14/tokio) |
[Chat](https://gitter.im/tokio-rs/tokio)
The API docs for the master branch are published [here][master-dox].
diff --git a/src/lib.rs b/src/lib.rs
index 23c89ece..a9ee31c2 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/tokio/0.1.13")]
+#![doc(html_root_url = "https://docs.rs/tokio/0.1.14")]
#![deny(missing_docs, warnings, missing_debug_implementations)]
#![cfg_attr(feature = "async-await-preview", feature(
async_await,
diff --git a/tokio-async-await/Cargo.toml b/tokio-async-await/Cargo.toml
index 5faba6d1..ae9528d2 100644
--- a/tokio-async-await/Cargo.toml
+++ b/tokio-async-await/Cargo.toml
@@ -3,7 +3,7 @@ name = "tokio-async-await"
# When releasing to crates.io:
# - Update html_root_url.
-version = "0.1.4"
+version = "0.1.5"
authors = ["Carl Lerche <me@carllerche.com>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
@@ -26,5 +26,4 @@ tokio-io = { version = "0.1.7", path = "../tokio-io" }
[dev-dependencies]
bytes = "0.4.9"
tokio = { version = "0.1.8", path = ".." }
-# tokio-codec = { version = "0.1.0", path = "../tokio-codec" }
hyper = "0.12.8"
diff --git a/tokio-async-await/LICENSE b/tokio-async-await/LICENSE
index e4657ab2..7181fd07 100644
--- a/tokio-async-await/LICENSE
+++ b/tokio-async-await/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2018 Tokio Contributors
+Copyright (c) 2019 Tokio Contributors
Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
diff --git a/tokio-async-await/src/lib.rs b/tokio-async-await/src/lib.rs
index b06b5b7e..dea3a045 100644
--- a/tokio-async-await/src/lib.rs
+++ b/tokio-async-await/src/lib.rs
@@ -7,7 +7,7 @@
futures_api,
)]
-#![doc(html_root_url = "https://docs.rs/tokio-async-await/0.1.4")]
+#![doc(html_root_url = "https://docs.rs/tokio-async-await/0.1.5")]
#![deny(missing_docs, missing_debug_implementations)]
#![cfg_attr(test, deny(warnings))]
diff --git a/tokio-buf/LICENSE b/tokio-buf/LICENSE
index 38c1e27b..cdb28b4b 100644
--- a/tokio-buf/LICENSE
+++ b/tokio-buf/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2018 Tokio Contributors
+Copyright (c) 2019 Tokio Contributors
Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
diff --git a/tokio-channel/LICENSE b/tokio-channel/LICENSE
index e0c7ffad..37effb0f 100644
--- a/tokio-channel/LICENSE
+++ b/tokio-channel/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2018 Tokio Contributors
+Copyright (c) 2019 Tokio Contributors
Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
diff --git a/tokio-codec/LICENSE b/tokio-codec/LICENSE
index 38c1e27b..cdb28b4b 100644
--- a/tokio-codec/LICENSE
+++ b/tokio-codec/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2018 Tokio Contributors
+Copyright (c) 2019 Tokio Contributors
Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
diff --git a/tokio-current-thread/LICENSE b/tokio-current-thread/LICENSE
index 38c1e27b..cdb28b4b 100644
--- a/tokio-current-thread/LICENSE
+++ b/tokio-current-thread/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2018 Tokio Contributors
+Copyright (c) 2019 Tokio Contributors
Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
diff --git a/tokio-executor/CHANGELOG.md b/tokio-executor/CHANGELOG.md
index 4ef02b13..4966481e 100644
--- a/tokio-executor/CHANGELOG.md
+++ b/tokio-executor/CHANGELOG.md
@@ -1,3 +1,8 @@
+# 0.1.6 (January 6, 2019)
+
+* Implement `Unpark` for `Arc<Unpark>` (#802).
+* Switch to crossbeam's Parker / Unparker (#528).
+
# 0.1.5 (September 26, 2018)
* Implement `futures::Executor` for `DefaultExecutor` (#563).
diff --git a/tokio-executor/Cargo.toml b/tokio-executor/Cargo.toml
index 56ac43e6..320df263 100644
--- a/tokio-executor/Cargo.toml
+++ b/tokio-executor/Cargo.toml
@@ -5,9 +5,11 @@ name = "tokio-executor"
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Update doc URL.
+# - Cargo.toml
+# - README.md
# - Create "v0.1.x" git tag.
-version = "0.1.5"
-documentation = "https://docs.rs/tokio-executor/0.1.5/tokio_executor"
+version = "0.1.6"
+documentation = "https://docs.rs/tokio-executor/0.1.6/tokio_executor"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://github.com/tokio-rs/tokio"
license = "MIT"
diff --git a/tokio-executor/LICENSE b/tokio-executor/LICENSE
index 38c1e27b..cdb28b4b 100644
--- a/tokio-executor/LICENSE
+++ b/tokio-executor/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2018 Tokio Contributors
+Copyright (c) 2019 Tokio Contributors
Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
diff --git a/tokio-executor/README.md b/tokio-executor/README.md
index 38369425..87c382b4 100644
--- a/tokio-executor/README.md
+++ b/tokio-executor/README.md
@@ -2,7 +2,7 @@
Task execution related traits and utilities.
-[Documentation](https://tokio-rs.github.io/tokio/tokio_executor/)
+[Documentation](https://docs.rs/tokio-executor/0.1.6/tokio_executor)
## Overview
diff --git a/tokio-executor/src/lib.rs b/tokio-executor/src/lib.rs
index c1925ba8..c9a0217c 100644
--- a/tokio-executor/src/lib.rs
+++ b/tokio-executor/src/lib.rs
@@ -1,5 +1,5 @@
#![deny(missing_docs, missing_debug_implementations, warnings)]
-#![doc(html_root_url = "https://docs.rs/tokio-executor/0.1.5")]
+#![doc(html_root_url = "https://docs.rs/tokio-executor/0.1.6")]
//! Task execution related traits and utilities.
//!
diff --git a/tokio-fs/CHANGELOG.md b/tokio-fs/CHANGELOG.md
index ea387ff8..d058d5a8 100644
--- a/tokio-fs/CHANGELOG.md
+++ b/tokio-fs/CHANGELOG.md
@@ -1,3 +1,7 @@
+# 0.1.5 (January 6, 2019)
+
+* Add examples to `File` API docs (#786).
+
# 0.1.4 (October 23, 2018)
* Provide `File::from_std` (#696).
diff --git a/tokio-fs/Cargo.toml b/tokio-fs/Cargo.toml
index 07d1c7d8..0e7eaa67 100644
--- a/tokio-fs/Cargo.toml
+++ b/tokio-fs/Cargo.toml
@@ -5,14 +5,16 @@ name = "tokio-fs"
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Update doc URL.
+# - Cargo.toml
+# - README.md
# - Create "v0.1.x" git tag.
-version = "0.1.4"
+version = "0.1.5"
authors = ["Carl Lerche <me@carllerche.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
-documentation = "https://docs.rs/tokio-fs/0.1.4/tokio_fs"
+documentation = "https://docs.rs/tokio-fs/0.1.5/tokio_fs"
description = """
Filesystem API for Tokio.
"""
diff --git a/tokio-fs/LICENSE b/tokio-fs/LICENSE
index 38c1e27b..cdb28b4b 100644
--- a/tokio-fs/LICENSE
+++ b/tokio-fs/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2018 Tokio Contributors
+Copyright (c) 2019 Tokio Contributors
Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
diff --git a/tokio-fs/README.md b/tokio-fs/README.md
index f359d767..6a28cbdd 100644
--- a/tokio-fs/README.md
+++ b/tokio-fs/README.md
@@ -2,7 +2,7 @@
Asynchronous filesystem manipulation operations (and stdin, stdout, stderr).
-[Documentation](https://tokio-rs.github.io/tokio/tokio_fs/)
+[Documentation](https://docs.rs/tokio-fs/0.1.5/tokio_fs)
## Overview
diff --git a/tokio-fs/src/lib.rs b/tokio-fs/src/lib.rs
index 6442cfde..087078fb 100644
--- a/tokio-fs/src/lib.rs
+++ b/tokio-fs/src/lib.rs
@@ -1,5 +1,5 @@
#![deny(missing_docs, missing_debug_implementations, warnings)]
-#![doc(html_root_url = "https://docs.rs/tokio-fs/0.1.4")]
+#![doc(html_root_url = "https://docs.rs/tokio-fs/0.1.5")]
//! Asynchronous file and standard stream adaptation.
//!
diff --git a/tokio-io/CHANGELOG.md b/tokio-io/CHANGELOG.md
index 81b71cd4..7e3ff95f 100644
--- a/tokio-io/CHANGELOG.md
+++ b/tokio-io/CHANGELOG.md
@@ -1,3 +1,7 @@
+# 0.1.11 (January 6, 2019)
+
+* Fix minor error in Decoder::decode API documentation (#797).
+
# 0.1.10 (October 23, 2018)
* Expose inner codec from `Framed` (#686).
diff --git a/tokio-io/Cargo.toml b/tokio-io/Cargo.toml
index 5bb51d84..edaa6056 100644
--- a/tokio-io/Cargo.toml
+++ b/tokio-io/Cargo.toml
@@ -5,13 +5,15 @@ name = "tokio-io"
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Update doc URL.
+# - Cargo.toml
+# - Readme.md
# - Create "v0.1.x" git tag.
-version = "0.1.10"
+version = "0.1.11"
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.10/tokio_io"
+documentation = "https://docs.rs/tokio-io/0.1.11/tokio_io"
description = """
Core I/O primitives for asynchronous I/O in Rust.
"""
diff --git a/tokio-io/LICENSE b/tokio-io/LICENSE
index 38c1e27b..cdb28b4b 100644
--- a/tokio-io/LICENSE
+++ b/tokio-io/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2018 Tokio Contributors
+Copyright (c) 2019 Tokio Contributors
Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
diff --git a/tokio-io/README.md b/tokio-io/README.md
index 324e7e6c..3c0e1451 100644
--- a/tokio-io/README.md
+++ b/tokio-io/README.md
@@ -4,7 +4,7 @@ Core I/O abstractions for the Tokio stack.
[![Build Status](https://travis-ci.org/tokio-rs/tokio-io.svg?branch=master)](https://travis-ci.org/tokio-rs/tokio-io)
-[Documentation](https://docs.rs/tokio-io)
+[Documentation](https://docs.rs/tokio-io/0.1.11/tokio_io)
## Usage
diff --git a/tokio-io/src/lib.rs b/tokio-io/src/lib.rs
index a3c9df39..3d5ef788 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.10")]
+#![doc(html_root_url = "https://docs.rs/tokio-io/0.1.11")]
//! Core I/O traits and combinators when working with Tokio.
//!
diff --git a/tokio-reactor/CHANGELOG.md b/tokio-reactor/CHANGELOG.md
index d7d5c494..bbe09fdf 100644
--- a/tokio-reactor/CHANGELOG.md
+++ b/tokio-reactor/CHANGELOG.md
@@ -1,3 +1,8 @@
+# 0.1.8 (January 6, 2019)
+
+* Update to `parking_lot` 0.7 (#778).
+* Deprecate `Handle::current()` (#805).
+
# 0.1.7 (November 21, 2018)
* Reduce log level to trace (#734).
diff --git a/tokio-reactor/Cargo.toml b/tokio-reactor/Cargo.toml
index 4753d22b..606ecec7 100644
--- a/tokio-reactor/Cargo.toml
+++ b/tokio-reactor/Cargo.toml
@@ -5,14 +5,16 @@ name = "tokio-reactor"
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Update doc URL.
+# - Cargo.toml
+# - README.md
# - Create "v0.1.x" git tag.
-version = "0.1.7"
+version = "0.1.8"
authors = ["Carl Lerche <me@carllerche.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
-documentation = "https://docs.rs/tokio-reactor/0.1.7/tokio_reactor"
+documentation = "https://docs.rs/tokio-reactor/0.1.8/tokio_reactor"
description = """
Event loop that drives Tokio I/O resources.
"""
diff --git a/tokio-reactor/LICENSE b/tokio-reactor/LICENSE
index 38c1e27b..cdb28b4b 100644
--- a/tokio-reactor/LICENSE
+++ b/tokio-reactor/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2018 Tokio Contributors
+Copyright (c) 2019 Tokio Contributors
Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
diff --git a/tokio-reactor/README.md b/tokio-reactor/README.md
index 0227c14e..dc48026c 100644
--- a/tokio-reactor/README.md
+++ b/tokio-reactor/README.md
@@ -2,7 +2,7 @@
Event loop that drives Tokio I/O resources.
-[Documentation](https://tokio-rs.github.io/tokio/tokio_reactor/)
+[Documentation](https://docs.rs/tokio-reactor/0.1.8/tokio_reactor)
## Overview
diff --git a/tokio-reactor/src/lib.rs b/tokio-reactor/src/lib.rs
index 249fe36f..938ce8e4 100644
--- a/tokio-reactor/src/lib.rs
+++ b/tokio-reactor/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/tokio-reactor/0.1.7")]
+#![doc(html_root_url = "https://docs.rs/tokio-reactor/0.1.8")]
#![deny(missing_docs, warnings, missing_debug_implementations)]
//! Event loop that drives Tokio I/O resources.
diff --git a/tokio-signal/LICENSE b/tokio-signal/LICENSE
index 814d5843..df553329 100644
--- a/tokio-signal/LICENSE
+++ b/tokio-signal/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2016-2018 Tokio contributors
+Copyright (c) 2019 Tokio contributors
Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
diff --git a/tokio-tcp/CHANGELOG.md b/tokio-tcp/CHANGELOG.md
index e54cc14e..3e416d52 100644
--- a/tokio-tcp/CHANGELOG.md
+++ b/tokio-tcp/CHANGELOG.md
@@ -1,3 +1,8 @@
+# 0.1.3 (January 6, 2019)
+
+* Deprecate `TcpStream::try_clone()` (#824).
+* Add examples to TcpListener and TcpStream API docs (#775).
+
# 0.1.2 (September 27, 2018)
* Documentation tweaks
diff --git a/tokio-tcp/Cargo.toml b/tokio-tcp/Cargo.toml
index bfced9ab..031a90df 100644
--- a/tokio-tcp/Cargo.toml
+++ b/tokio-tcp/Cargo.toml
@@ -4,14 +4,16 @@ name = "tokio-tcp"
# When releasing to crates.io:
# - Update html_root_url.
# - Update doc url
+# - Cargo.toml
+# - README.md
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
-version = "0.1.2"
+version = "0.1.3"
authors = ["Carl Lerche <me@carllerche.com>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
-documentation = "https://docs.rs/tokio-tcp/0.1.2/tokio_tcp"
+documentation = "https://docs.rs/tokio-tcp/0.1.3/tokio_tcp"
description = """
TCP bindings for tokio.
"""
diff --git a/tokio-tcp/LICENSE b/tokio-tcp/LICENSE
index 38c1e27b..cdb28b4b 100644
--- a/tokio-tcp/LICENSE
+++ b/tokio-tcp/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2018 Tokio Contributors
+Copyright (c) 2019 Tokio Contributors
Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
diff --git a/tokio-tcp/README.md b/tokio-tcp/README.md
index 9cfc177b..b211630f 100644
--- a/tokio-tcp/README.md
+++ b/tokio-tcp/README.md
@@ -2,7 +2,7 @@
TCP bindings for `tokio`.
-[Documentation](https://tokio-rs.github.io/tokio/tokio_tcp/)
+[Documentation](https://docs.rs/tokio-tcp/0.1.3/tokio_tcp)
## License
diff --git a/tokio-tcp/src/lib.rs b/tokio-tcp/src/lib.rs
index 192d1136..e6ebdf24 100644
--- a/tokio-tcp/src/lib.rs
+++ b/tokio-tcp/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/tokio-tcp/0.1.2")]
+#![doc(html_root_url = "https://docs.rs/tokio-tcp/0.1.3")]
#![deny(missing_docs, warnings, missing_debug_implementations)]
//! TCP bindings for `tokio`.
diff --git a/tokio-threadpool/CHANGELOG.md b/tokio-threadpool/CHANGELOG.md
index 1539e628..78f60395 100644
--- a/tokio-threadpool/CHANGELOG.md
+++ b/tokio-threadpool/CHANGELOG.md
@@ -1,3 +1,11 @@
+# 0.1.10 (January 6, 2019)
+
+* Fix deadlock bug in `blocking` (#795).
+* Introduce global task queue (#798).
+* Use crossbeam's Parker / Unparker (#529).
+* Panic if worker thread cannot be spawned (#826).
+* Improve `blocking` API documentation (#789).
+
# 0.1.9 (November 21, 2018)
* Bump internal dependency versions (#746, #753).
diff --git a/tokio-threadpool/Cargo.toml b/tokio-threadpool/Cargo.toml
index 2c5a9c97..f891f7e3 100644
--- a/tokio-threadpool/Cargo.toml
+++ b/tokio-threadpool/Cargo.toml
@@ -5,8 +5,8 @@ name = "tokio-threadpool"
# - Update CHANGELOG.md.
# - Update doc URL.
# - Create "v0.1.x" git tag.
-version = "0.1.9"
-documentation = "https://docs.rs/tokio-threadpool/0.1.9/tokio_threadpool"
+version = "0.1.10"
+documentation = "https://docs.rs/tokio-threadpool/0.1.10/tokio_threadpool"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://github.com/tokio-rs/tokio"
license = "MIT"
diff --git a/tokio-threadpool/LICENSE b/tokio-threadpool/LICENSE
index 38c1e27b..cdb28b4b 100644
--- a/tokio-threadpool/LICENSE
+++ b/tokio-threadpool/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2018 Tokio Contributors
+Copyright (c) 2019 Tokio Contributors
Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
diff --git a/tokio-threadpool/README.md b/tokio-threadpool/README.md
index 3c89b265..894165db 100644
--- a/tokio-threadpool/README.md
+++ b/tokio-threadpool/README.md
@@ -3,6 +3,8 @@
A library for scheduling execution of futures concurrently across a pool of
threads.
+[Documentation](https://docs.rs/tokio-threadpool/0.1.10/tokio_threadpool)
+
### Why not Rayon?
Rayon is designed to handle parallelizing single computations by breaking them
diff --git a/tokio-threadpool/src/lib.rs b/tokio-threadpool/src/lib.rs
index 8f6f82d1..f1a065ba 100644
--- a/tokio-threadpool/src/lib.rs
+++ b/tokio-threadpool/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/tokio-threadpool/0.1.9")]
+#![doc(html_root_url = "https://docs.rs/tokio-threadpool/0.1.10")]
#![deny(warnings, missing_docs, missing_debug_implementations)]
//! A work-stealing based thread pool for executing futures.
diff --git a/tokio-timer/LICENSE b/tokio-timer/LICENSE
index 38c1e27b..cdb28b4b 100644
--- a/tokio-timer/LICENSE
+++ b/tokio-timer/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2018 Tokio Contributors
+Copyright (c) 2019 Tokio Contributors
Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
diff --git a/tokio-tls/CHANGELOG.md b/tokio-tls/CHANGELOG.md
index 238f85f2..60c54fc7 100644
--- a/tokio-tls/CHANGELOG.md
+++ b/tokio-tls/CHANGELOG.md
@@ -1,3 +1,7 @@
+# 0.2.1 (January 6, 2019)
+
+* Implement `Clone` for `TlsConnector` and `TlsAcceptor` (#777)
+
# 0.2.0 (August 8, 2018)
* Initial release with `tokio` support.
diff --git a/tokio-tls/Cargo.toml b/tokio-tls/Cargo.toml
index 40cc9239..89d4c1ed 100644
--- a/tokio-tls/Cargo.toml
+++ b/tokio-tls/Cargo.toml
@@ -4,12 +4,12 @@ name = "tokio-tls"
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Create "tokio-tls-0.2.x" git tag.
-version = "0.2.0"
+version = "0.2.1"
authors = ["Carl Lerche <me@carllerche.com>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
-documentation = "https://docs.rs/tokio-tls"
+documentation = "https://docs.rs/tokio-tls/0.2.1/tokio_tls/"
description = """