diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ccdfc4cc0..acc3daec5 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -28,7 +28,7 @@ jobs: - tokio-reactor - tokio-signal - tokio-tcp - - tokio-tls + # - tokio-tls - tokio-udp - tokio-uds diff --git a/tokio-codec/CHANGELOG.md b/tokio-codec/CHANGELOG.md index 02cec7a4e..fa173840d 100644 --- a/tokio-codec/CHANGELOG.md +++ b/tokio-codec/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.1.2 (February 4, 2020) + +* Add `tokio 0.2.x` deprecation notice. + # 0.1.1 (September 26, 2018) * Allow setting max line length with `LinesCodec` (#632) diff --git a/tokio-codec/Cargo.toml b/tokio-codec/Cargo.toml index b6dbbdf69..a99141f70 100644 --- a/tokio-codec/Cargo.toml +++ b/tokio-codec/Cargo.toml @@ -8,12 +8,12 @@ name = "tokio-codec" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.1" +version = "0.1.2" authors = ["Carl Lerche ", "Bryan Burgers "] license = "MIT" repository = "https://github.com/tokio-rs/tokio" homepage = "https://tokio.rs" -documentation = "https://docs.rs/tokio-codec/0.1.1/tokio_codec" +documentation = "https://docs.rs/tokio-codec/0.1.2/tokio_codec" description = """ Utilities for encoding and decoding frames. """ diff --git a/tokio-codec/src/lib.rs b/tokio-codec/src/lib.rs index 47696bcde..b585787e2 100644 --- a/tokio-codec/src/lib.rs +++ b/tokio-codec/src/lib.rs @@ -1,5 +1,5 @@ #![deny(missing_docs, missing_debug_implementations)] -#![doc(html_root_url = "https://docs.rs/tokio-codec/0.1.1")] +#![doc(html_root_url = "https://docs.rs/tokio-codec/0.1.2")] //! Utilities for encoding and decoding frames. //! diff --git a/tokio-current-thread/CHANGELOG.md b/tokio-current-thread/CHANGELOG.md index deb764d4a..343365960 100644 --- a/tokio-current-thread/CHANGELOG.md +++ b/tokio-current-thread/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.1.7 (February 4, 2020) + +* Add `tokio 0.2.x` deprecation notice. + # 0.1.6 (March 22, 2019) ### Added diff --git a/tokio-current-thread/Cargo.toml b/tokio-current-thread/Cargo.toml index 386cad6db..a99d87e00 100644 --- a/tokio-current-thread/Cargo.toml +++ b/tokio-current-thread/Cargo.toml @@ -8,8 +8,8 @@ name = "tokio-current-thread" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.6" -documentation = "https://docs.rs/tokio-current-thread/0.1.6/tokio_current_thread" +version = "0.1.7" +documentation = "https://docs.rs/tokio-current-thread/0.1.7/tokio_current_thread" repository = "https://github.com/tokio-rs/tokio" homepage = "https://github.com/tokio-rs/tokio" license = "MIT" diff --git a/tokio-current-thread/src/lib.rs b/tokio-current-thread/src/lib.rs index 23cf48548..53392c4bf 100644 --- a/tokio-current-thread/src/lib.rs +++ b/tokio-current-thread/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tokio-current-thread/0.1.6")] +#![doc(html_root_url = "https://docs.rs/tokio-current-thread/0.1.7")] #![deny(missing_docs, missing_debug_implementations)] //! A single-threaded executor which executes tasks on the same thread from which diff --git a/tokio-executor/CHANGELOG.md b/tokio-executor/CHANGELOG.md index 328085b0d..946283764 100644 --- a/tokio-executor/CHANGELOG.md +++ b/tokio-executor/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.1.10 (February 4, 2020) + +* Add `tokio 0.2.x` deprecation notice. + # 0.1.9 (November 27, 2019) ### Added diff --git a/tokio-executor/Cargo.toml b/tokio-executor/Cargo.toml index 2d8a7161b..ff5c5d6eb 100644 --- a/tokio-executor/Cargo.toml +++ b/tokio-executor/Cargo.toml @@ -8,8 +8,8 @@ name = "tokio-executor" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.9" -documentation = "https://docs.rs/tokio-executor/0.1.9/tokio_executor" +version = "0.1.10" +documentation = "https://docs.rs/tokio-executor/0.1.10/tokio_executor" repository = "https://github.com/tokio-rs/tokio" homepage = "https://github.com/tokio-rs/tokio" license = "MIT" diff --git a/tokio-executor/src/lib.rs b/tokio-executor/src/lib.rs index 67aa4895f..87124232d 100644 --- a/tokio-executor/src/lib.rs +++ b/tokio-executor/src/lib.rs @@ -1,5 +1,5 @@ #![deny(missing_docs, missing_debug_implementations)] -#![doc(html_root_url = "https://docs.rs/tokio-executor/0.1.9")] +#![doc(html_root_url = "https://docs.rs/tokio-executor/0.1.10")] //! Task execution related traits and utilities. //! diff --git a/tokio-fs/CHANGELOG.md b/tokio-fs/CHANGELOG.md index 202e09896..fce6aa489 100644 --- a/tokio-fs/CHANGELOG.md +++ b/tokio-fs/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.1.7 (February 4, 2020) + +* Add `tokio 0.2.x` deprecation notice. + # 0.1.6 (March 1, 2019) ### Added diff --git a/tokio-fs/Cargo.toml b/tokio-fs/Cargo.toml index caf4270fa..7dab22dd1 100644 --- a/tokio-fs/Cargo.toml +++ b/tokio-fs/Cargo.toml @@ -8,13 +8,13 @@ name = "tokio-fs" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.6" +version = "0.1.7" authors = ["Carl Lerche "] license = "MIT" readme = "README.md" repository = "https://github.com/tokio-rs/tokio" homepage = "https://tokio.rs" -documentation = "https://docs.rs/tokio-fs/0.1.6/tokio_fs" +documentation = "https://docs.rs/tokio-fs/0.1.7/tokio_fs" description = """ Filesystem API for Tokio. """ diff --git a/tokio-fs/src/lib.rs b/tokio-fs/src/lib.rs index 6033f719f..2156774e8 100644 --- a/tokio-fs/src/lib.rs +++ b/tokio-fs/src/lib.rs @@ -1,5 +1,5 @@ #![deny(missing_docs, missing_debug_implementations)] -#![doc(html_root_url = "https://docs.rs/tokio-fs/0.1.6")] +#![doc(html_root_url = "https://docs.rs/tokio-fs/0.1.7")] //! Asynchronous file and standard stream adaptation. //! diff --git a/tokio-io/CHANGELOG.md b/tokio-io/CHANGELOG.md index fe4a63e1e..894d1e5fa 100644 --- a/tokio-io/CHANGELOG.md +++ b/tokio-io/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.1.13 (February 4, 2020) + +* Add `tokio 0.2.x` deprecation notice. + # 0.1.12 (March 1, 2019) ### Added diff --git a/tokio-io/Cargo.toml b/tokio-io/Cargo.toml index 759534f10..351a0dbce 100644 --- a/tokio-io/Cargo.toml +++ b/tokio-io/Cargo.toml @@ -8,12 +8,12 @@ name = "tokio-io" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.12" +version = "0.1.13" authors = ["Carl Lerche "] license = "MIT" repository = "https://github.com/tokio-rs/tokio" homepage = "https://tokio.rs" -documentation = "https://docs.rs/tokio-io/0.1.12/tokio_io" +documentation = "https://docs.rs/tokio-io/0.1.13/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 36dbdca41..6d9fe2292 100644 --- a/tokio-io/src/lib.rs +++ b/tokio-io/src/lib.rs @@ -1,5 +1,5 @@ #![deny(missing_docs, missing_debug_implementations)] -#![doc(html_root_url = "https://docs.rs/tokio-io/0.1.12")] +#![doc(html_root_url = "https://docs.rs/tokio-io/0.1.13")] //! Core I/O traits and combinators when working with Tokio. //! diff --git a/tokio-process/CHANGELOG.md b/tokio-process/CHANGELOG.md index 61bb06dfa..69bced95b 100644 --- a/tokio-process/CHANGELOG.md +++ b/tokio-process/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.2.5 - 2020-02-04 + +* Add `tokio 0.2.x` deprecation notice. + ## 0.2.4 - 2019-06-21 ### Fixed * Proccesses "leaked" via `Child::forget` now reaped rather than left as zombies diff --git a/tokio-process/Cargo.toml b/tokio-process/Cargo.toml index 2c3112b84..948fa311a 100644 --- a/tokio-process/Cargo.toml +++ b/tokio-process/Cargo.toml @@ -4,13 +4,13 @@ name = "tokio-process" # - Update html_root_url. # - Update CHANGELOG.md. # - Create "X.Y.Z" git tag. -version = "0.2.4" +version = "0.2.5" edition = "2018" authors = ["Tokio Contributors "] license = "MIT" repository = "https://github.com/tokio-rs/tokio" homepage = "https://github.com/tokio-rs/tokio" -documentation = "https://docs.rs/tokio-process/0.2.4/tokio_process" +documentation = "https://docs.rs/tokio-process/0.2.5/tokio_process" description = """ An implementation of an asynchronous process management backed futures. """ diff --git a/tokio-reactor/CHANGELOG.md b/tokio-reactor/CHANGELOG.md index 52ff17f36..038866b98 100644 --- a/tokio-reactor/CHANGELOG.md +++ b/tokio-reactor/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.1.12 (February 4, 2020) + +* Add `tokio 0.2.x` deprecation notice. + # 0.1.11 (November 27, 2019) ### Added diff --git a/tokio-reactor/Cargo.toml b/tokio-reactor/Cargo.toml index 6d2faebd5..9df5aa7ad 100644 --- a/tokio-reactor/Cargo.toml +++ b/tokio-reactor/Cargo.toml @@ -8,13 +8,13 @@ name = "tokio-reactor" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.11" +version = "0.1.12" authors = ["Carl Lerche "] license = "MIT" readme = "README.md" repository = "https://github.com/tokio-rs/tokio" homepage = "https://tokio.rs" -documentation = "https://docs.rs/tokio-reactor/0.1.11/tokio_reactor" +documentation = "https://docs.rs/tokio-reactor/0.1.12/tokio_reactor" description = """ Event loop that drives Tokio I/O resources. """ diff --git a/tokio-reactor/src/lib.rs b/tokio-reactor/src/lib.rs index 1fba74224..0df8e49d2 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.11")] +#![doc(html_root_url = "https://docs.rs/tokio-reactor/0.1.12")] #![deny(missing_docs, missing_debug_implementations)] //! Event loop that drives Tokio I/O resources. diff --git a/tokio-signal/CHANGELOG.md b/tokio-signal/CHANGELOG.md index 5014fb4d9..2e70caeba 100644 --- a/tokio-signal/CHANGELOG.md +++ b/tokio-signal/CHANGELOG.md @@ -1,6 +1,9 @@ -# 0.2.9 +# 0.2.9 (February 4, 2020) + +* Add `tokio 0.2.x` deprecation notice. ### Fixed + - `windows::Event` performs internal registrations lazily, so now it can be constructed outside of a running task - remove usage of deprecated `Handle::current` in default `windows::Event` diff --git a/tokio-signal/Cargo.toml b/tokio-signal/Cargo.toml index 0b2b9e191..2e0cc3527 100644 --- a/tokio-signal/Cargo.toml +++ b/tokio-signal/Cargo.toml @@ -8,12 +8,12 @@ name = "tokio-signal" # - README.md # - Update CHANGELOG.md. # - Create "v0.2.x" git tag. -version = "0.2.8" +version = "0.2.9" authors = ["Tokio Contributors "] license = "MIT" repository = "https://github.com/tokio-rs/tokio" homepage = "https://github.com/tokio-rs/tokio" -documentation = "https://docs.rs/tokio-signal/0.2.8/tokio_signal" +documentation = "https://docs.rs/tokio-signal/0.2.9/tokio_signal" description = """ An implementation of an asynchronous Unix signal handling backed futures. """ diff --git a/tokio-signal/src/lib.rs b/tokio-signal/src/lib.rs index a9043f6e5..56a05d777 100644 --- a/tokio-signal/src/lib.rs +++ b/tokio-signal/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tokio-signal/0.2.8")] +#![doc(html_root_url = "https://docs.rs/tokio-signal/0.2.9")] #![deny(missing_docs)] //! Asynchronous signal handling for Tokio diff --git a/tokio-sync/CHANGELOG.md b/tokio-sync/CHANGELOG.md index 871f1c2f9..26ae20c4f 100644 --- a/tokio-sync/CHANGELOG.md +++ b/tokio-sync/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.1.8 (February 4, 2020) + +* Add `tokio 0.2.x` deprecation notice. + # 0.1.7 (October 10, 2019) ### Fixed diff --git a/tokio-sync/Cargo.toml b/tokio-sync/Cargo.toml index a8b571214..5ba102d88 100644 --- a/tokio-sync/Cargo.toml +++ b/tokio-sync/Cargo.toml @@ -8,12 +8,12 @@ name = "tokio-sync" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.7" +version = "0.1.8" authors = ["Carl Lerche "] license = "MIT" repository = "https://github.com/tokio-rs/tokio" homepage = "https://tokio.rs" -documentation = "https://docs.rs/tokio-sync/0.1.7/tokio_sync" +documentation = "https://docs.rs/tokio-sync/0.1.8/tokio_sync" description = """ Synchronization utilities. """ diff --git a/tokio-sync/src/lib.rs b/tokio-sync/src/lib.rs index 405d4af5a..14ad88319 100644 --- a/tokio-sync/src/lib.rs +++ b/tokio-sync/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tokio-sync/0.1.7")] +#![doc(html_root_url = "https://docs.rs/tokio-sync/0.1.8")] #![deny(missing_debug_implementations, missing_docs, unreachable_pub)] //! Asynchronous synchronization primitives. diff --git a/tokio-tcp/Cargo.toml b/tokio-tcp/Cargo.toml index 4086e5623..6d381858c 100644 --- a/tokio-tcp/Cargo.toml +++ b/tokio-tcp/Cargo.toml @@ -8,12 +8,12 @@ name = "tokio-tcp" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.3" +version = "0.1.4" authors = ["Carl Lerche "] license = "MIT" repository = "https://github.com/tokio-rs/tokio" homepage = "https://tokio.rs" -documentation = "https://docs.rs/tokio-tcp/0.1.3/tokio_tcp" +documentation = "https://docs.rs/tokio-tcp/0.1.4/tokio_tcp" description = """ TCP bindings for tokio. """ diff --git a/tokio-threadpool/CHANGELOG.md b/tokio-threadpool/CHANGELOG.md index f99b9f90e..4ad847c39 100644 --- a/tokio-threadpool/CHANGELOG.md +++ b/tokio-threadpool/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.1.18 (February 4, 2020) + +* Add `tokio 0.2.x` deprecation notice. + # 0.1.17 (December 3, 2019) ### Added diff --git a/tokio-threadpool/Cargo.toml b/tokio-threadpool/Cargo.toml index 5db03aec4..0bb30a6a3 100644 --- a/tokio-threadpool/Cargo.toml +++ b/tokio-threadpool/Cargo.toml @@ -8,8 +8,8 @@ name = "tokio-threadpool" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.17" -documentation = "https://docs.rs/tokio-threadpool/0.1.17/tokio_threadpool" +version = "0.1.18" +documentation = "https://docs.rs/tokio-threadpool/0.1.18/tokio_threadpool" repository = "https://github.com/tokio-rs/tokio" homepage = "https://github.com/tokio-rs/tokio" license = "MIT" diff --git a/tokio-threadpool/src/lib.rs b/tokio-threadpool/src/lib.rs index 591a79403..36cf69f3e 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.17")] +#![doc(html_root_url = "https://docs.rs/tokio-threadpool/0.1.18")] #![deny(missing_docs, missing_debug_implementations)] //! A work-stealing based thread pool for executing futures. diff --git a/tokio-timer/CHANGELOG.md b/tokio-timer/CHANGELOG.md index ce7d7bf4f..63eaaf775 100644 --- a/tokio-timer/CHANGELOG.md +++ b/tokio-timer/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.2.13 (February 4, 2020) + +* Add `tokio 0.2.x` deprecation notice. + # 0.2.12 (November 27, 2019) ### Added diff --git a/tokio-timer/Cargo.toml b/tokio-timer/Cargo.toml index 2c5e929ee..97a3f8322 100644 --- a/tokio-timer/Cargo.toml +++ b/tokio-timer/Cargo.toml @@ -8,11 +8,11 @@ name = "tokio-timer" # - README.md # - Update CHANGELOG.md. # - Create "v0.2.x" git tag. -version = "0.2.12" +version = "0.2.13" authors = ["Carl Lerche "] license = "MIT" readme = "README.md" -documentation = "https://docs.rs/tokio-timer/0.2.12/tokio_timer" +documentation = "https://docs.rs/tokio-timer/0.2.13/tokio_timer" repository = "https://github.com/tokio-rs/tokio" homepage = "https://github.com/tokio-rs/tokio" description = """ diff --git a/tokio-timer/src/lib.rs b/tokio-timer/src/lib.rs index 0954a9464..a141dd279 100644 --- a/tokio-timer/src/lib.rs +++ b/tokio-timer/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tokio-timer/0.2.12")] +#![doc(html_root_url = "https://docs.rs/tokio-timer/0.2.13")] #![deny(missing_docs, missing_debug_implementations)] //! Utilities for tracking time. diff --git a/tokio-udp/CHANGELOG.md b/tokio-udp/CHANGELOG.md index b0f8a3920..a139deced 100644 --- a/tokio-udp/CHANGELOG.md +++ b/tokio-udp/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.1.6 (February 4, 2020) + +* Add `tokio 0.2.x` deprecation notice. + # 0.1.5 (August 30, 2019) * Allow `UdpFramed::new` to revert to previous behavior for decoding frames (#1517) diff --git a/tokio-udp/Cargo.toml b/tokio-udp/Cargo.toml index 6b09f84ba..5b7a55cac 100644 --- a/tokio-udp/Cargo.toml +++ b/tokio-udp/Cargo.toml @@ -8,10 +8,10 @@ name = "tokio-udp" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.5" +version = "0.1.6" authors = ["Carl Lerche "] license = "MIT" -documentation = "https://docs.rs/tokio-udp/0.1.5/tokio_udp" +documentation = "https://docs.rs/tokio-udp/0.1.6/tokio_udp" repository = "https://github.com/tokio-rs/tokio" homepage = "https://tokio.rs" description = """ diff --git a/tokio-udp/src/lib.rs b/tokio-udp/src/lib.rs index 0a548d4f6..0f947d145 100644 --- a/tokio-udp/src/lib.rs +++ b/tokio-udp/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tokio-tcp/0.1.5")] +#![doc(html_root_url = "https://docs.rs/tokio-tcp/0.1.6")] #![deny(missing_docs, missing_debug_implementations)] //! UDP bindings for `tokio`. diff --git a/tokio-uds/CHANGELOG.md b/tokio-uds/CHANGELOG.md index fcf798cad..b11203b6c 100644 --- a/tokio-uds/CHANGELOG.md +++ b/tokio-uds/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.2.6 (February 4, 2020) + +* Add `tokio 0.2.x` deprecation notice. + # 0.2.5 (January 6, 2019) * Fix bug in `UnixDatagram::send` (#782). diff --git a/tokio-uds/Cargo.toml b/tokio-uds/Cargo.toml index 591d3003a..f8bb5c236 100644 --- a/tokio-uds/Cargo.toml +++ b/tokio-uds/Cargo.toml @@ -8,7 +8,7 @@ name = "tokio-uds" # - README.md # - Update CHANGELOG.md. # - Create "v0.2.x" git tag. -version = "0.2.5" +version = "0.2.6" authors = ["Carl Lerche "] license = "MIT" repository = "https://github.com/tokio-rs/tokio" diff --git a/tokio-uds/src/lib.rs b/tokio-uds/src/lib.rs index 0f9b1ff53..b924b5974 100644 --- a/tokio-uds/src/lib.rs +++ b/tokio-uds/src/lib.rs @@ -1,5 +1,5 @@ #![cfg(unix)] -#![doc(html_root_url = "https://docs.rs/tokio-uds/0.2.5")] +#![doc(html_root_url = "https://docs.rs/tokio-uds/0.2.6")] #![deny(missing_docs, missing_debug_implementations)] //! Unix Domain Sockets for Tokio.