From e964c4136c91c535fb2dfee0a3327dc5a6599903 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Mon, 6 Aug 2018 20:36:50 -0700 Subject: [PATCH] Bump subcrate versions (#524) * tokio-current-thread 0.1.1 * tokio-executor 0.1.3 * tokio-fs 0.1.3 * tokio-reactor 0.1.3 * tokio-tcp 0.1.1 * tokio-timer 0.2.5 --- tokio-current-thread/CHANGELOG.md | 5 +++++ tokio-current-thread/Cargo.toml | 2 +- tokio-current-thread/src/lib.rs | 2 +- tokio-executor/CHANGELOG.md | 8 ++++++++ tokio-executor/Cargo.toml | 2 +- tokio-executor/src/lib.rs | 2 +- tokio-fs/CHANGELOG.md | 4 ++++ tokio-fs/Cargo.toml | 2 +- tokio-fs/src/lib.rs | 2 +- tokio-reactor/CHANGELOG.md | 4 ++++ tokio-reactor/Cargo.toml | 2 +- tokio-reactor/src/lib.rs | 2 +- tokio-tcp/CHANGELOG.md | 6 +++++- tokio-tcp/Cargo.toml | 2 +- tokio-tcp/src/lib.rs | 2 +- tokio-timer/CHANGELOG.md | 4 ++++ tokio-timer/Cargo.toml | 2 +- tokio-timer/src/lib.rs | 2 +- 18 files changed, 42 insertions(+), 13 deletions(-) diff --git a/tokio-current-thread/CHANGELOG.md b/tokio-current-thread/CHANGELOG.md index 1db9cb744..fad6a9bef 100644 --- a/tokio-current-thread/CHANGELOG.md +++ b/tokio-current-thread/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.1.1 (August 6, 2018) + +* Implement `std::Error` for misc error types (#501) +* bugfix: Track tasks pending in spawn queue (#478) + # 0.1.0 (June 13, 2018) * Extract `tokio::executor::current_thread` to a tokio-current-thread crate (#356) diff --git a/tokio-current-thread/Cargo.toml b/tokio-current-thread/Cargo.toml index ce227d747..a1c77a00f 100644 --- a/tokio-current-thread/Cargo.toml +++ b/tokio-current-thread/Cargo.toml @@ -5,7 +5,7 @@ name = "tokio-current-thread" # - Update html_root_url. # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.0" +version = "0.1.1" documentation = "https://docs.rs/tokio-current-thread" repository = "https://github.com/tokio-rs/tokio" homepage = "https://github.com/tokio-rs/tokio" diff --git a/tokio-current-thread/src/lib.rs b/tokio-current-thread/src/lib.rs index 1c22333c5..e8794c9bb 100644 --- a/tokio-current-thread/src/lib.rs +++ b/tokio-current-thread/src/lib.rs @@ -22,7 +22,7 @@ //! [`block_on_all`]: fn.block_on_all.html //! [executor module]: https://docs.rs/tokio/0.1/tokio/executor/index.html -#![doc(html_root_url = "https://docs.rs/tokio-current-thread/0.1.0")] +#![doc(html_root_url = "https://docs.rs/tokio-current-thread/0.1.1")] #![deny(warnings, missing_docs, missing_debug_implementations)] extern crate futures; diff --git a/tokio-executor/CHANGELOG.md b/tokio-executor/CHANGELOG.md index f6e106693..3fb039a78 100644 --- a/tokio-executor/CHANGELOG.md +++ b/tokio-executor/CHANGELOG.md @@ -1,3 +1,11 @@ +# 0.1.3 (August 6, 2018) + +* Implement `Executor` for `Box` (#420). +* Improve `EnterError` debug message (#410). +* Implement `status`, `Send`, and `Sync` for `DefaultExecutor` (#463, #472). +* Fix race in `ParkThread` (#507). +* Handle recursive calls into `DefaultExecutor` (#473). + # 0.1.2 (March 30, 2018) * Implement `Unpark` for `Box`. diff --git a/tokio-executor/Cargo.toml b/tokio-executor/Cargo.toml index e73ff5cb0..3e3468947 100644 --- a/tokio-executor/Cargo.toml +++ b/tokio-executor/Cargo.toml @@ -5,7 +5,7 @@ name = "tokio-executor" # - Update html_root_url. # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.2" +version = "0.1.3" documentation = "https://docs.rs/tokio-executor" repository = "https://github.com/tokio-rs/tokio" homepage = "https://github.com/tokio-rs/tokio" diff --git a/tokio-executor/src/lib.rs b/tokio-executor/src/lib.rs index 4fbfdc795..e4a886907 100644 --- a/tokio-executor/src/lib.rs +++ b/tokio-executor/src/lib.rs @@ -33,7 +33,7 @@ //! [`Future::poll`]: https://docs.rs/futures/0.1/futures/future/trait.Future.html#tymethod.poll #![deny(missing_docs, missing_debug_implementations, warnings)] -#![doc(html_root_url = "https://docs.rs/tokio-executor/0.1.2")] +#![doc(html_root_url = "https://docs.rs/tokio-executor/0.1.3")] extern crate futures; diff --git a/tokio-fs/CHANGELOG.md b/tokio-fs/CHANGELOG.md index 5e161ee74..197d4a893 100644 --- a/tokio-fs/CHANGELOG.md +++ b/tokio-fs/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.1.3 (August 6, 2018) + +* Add async equivalents to most of `std::fs` (#494). + # 0.1.2 (July 11, 2018) * Add `metadata` and `File::metadata` ([#433](https://github.com/tokio-rs/tokio/pull/433), [#385](https://github.com/tokio-rs/tokio/pull/385)) diff --git a/tokio-fs/Cargo.toml b/tokio-fs/Cargo.toml index 8cde466be..45b48667e 100644 --- a/tokio-fs/Cargo.toml +++ b/tokio-fs/Cargo.toml @@ -5,7 +5,7 @@ name = "tokio-fs" # - Update html_root_url. # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.2" +version = "0.1.3" authors = ["Carl Lerche "] license = "MIT" readme = "README.md" diff --git a/tokio-fs/src/lib.rs b/tokio-fs/src/lib.rs index 1b266de87..2beec8c0c 100644 --- a/tokio-fs/src/lib.rs +++ b/tokio-fs/src/lib.rs @@ -26,7 +26,7 @@ //! [tokio-threadpool]: https://docs.rs/tokio-threadpool/0.1/tokio_threadpool #![deny(missing_docs, missing_debug_implementations, warnings)] -#![doc(html_root_url = "https://docs.rs/tokio-fs/0.1.2")] +#![doc(html_root_url = "https://docs.rs/tokio-fs/0.1.3")] #[macro_use] extern crate futures; diff --git a/tokio-reactor/CHANGELOG.md b/tokio-reactor/CHANGELOG.md index f9cfc0a89..05ed84ae8 100644 --- a/tokio-reactor/CHANGELOG.md +++ b/tokio-reactor/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.1.3 (August 6, 2018) + +* Misc small fixes (#508) + # 0.1.2 (June 13, 2018) * Fix deadlock that can happen when shutting down (#409) diff --git a/tokio-reactor/Cargo.toml b/tokio-reactor/Cargo.toml index be9244773..9e461dac7 100644 --- a/tokio-reactor/Cargo.toml +++ b/tokio-reactor/Cargo.toml @@ -5,7 +5,7 @@ name = "tokio-reactor" # - Update html_root_url. # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.2" +version = "0.1.3" authors = ["Carl Lerche "] license = "MIT" readme = "README.md" diff --git a/tokio-reactor/src/lib.rs b/tokio-reactor/src/lib.rs index 713deff54..381d77af0 100644 --- a/tokio-reactor/src/lib.rs +++ b/tokio-reactor/src/lib.rs @@ -27,7 +27,7 @@ //! [`PollEvented`]: struct.PollEvented.html //! [reactor module]: https://docs.rs/tokio/0.1/tokio/reactor/index.html -#![doc(html_root_url = "https://docs.rs/tokio-reactor/0.1.2")] +#![doc(html_root_url = "https://docs.rs/tokio-reactor/0.1.3")] #![deny(missing_docs, warnings, missing_debug_implementations)] #[macro_use] diff --git a/tokio-tcp/CHANGELOG.md b/tokio-tcp/CHANGELOG.md index fb22aa7c8..93605645e 100644 --- a/tokio-tcp/CHANGELOG.md +++ b/tokio-tcp/CHANGELOG.md @@ -1,3 +1,7 @@ -# 0.1.0 (unreleased) +# 0.1.1 (August 6, 2018) + +* Add `TcpStream::try_clone` (#448) + +# 0.1.0 (March 23, 2018) * Initial release diff --git a/tokio-tcp/Cargo.toml b/tokio-tcp/Cargo.toml index 06783cc1d..56c7241ea 100644 --- a/tokio-tcp/Cargo.toml +++ b/tokio-tcp/Cargo.toml @@ -5,7 +5,7 @@ name = "tokio-tcp" # - Update html_root_url. # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.0" +version = "0.1.1" authors = ["Carl Lerche "] license = "MIT" repository = "https://github.com/tokio-rs/tokio" diff --git a/tokio-tcp/src/lib.rs b/tokio-tcp/src/lib.rs index 08d41623c..c7713ee21 100644 --- a/tokio-tcp/src/lib.rs +++ b/tokio-tcp/src/lib.rs @@ -19,7 +19,7 @@ //! [incoming_method]: struct.TcpListener.html#method.incoming //! [`Incoming`]: struct.Incoming.html -#![doc(html_root_url = "https://docs.rs/tokio-tcp/0.1.0")] +#![doc(html_root_url = "https://docs.rs/tokio-tcp/0.1.1")] #![deny(missing_docs, warnings, missing_debug_implementations)] extern crate bytes; diff --git a/tokio-timer/CHANGELOG.md b/tokio-timer/CHANGELOG.md index 9c7fc9242..653a2856c 100644 --- a/tokio-timer/CHANGELOG.md +++ b/tokio-timer/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.2.5 (August 6, 2018) + +* Add `Interval::interval` shortcut (#492). + # 0.2.4 (June 6, 2018) * Add `sleep` function for easy interval delays (#347). diff --git a/tokio-timer/Cargo.toml b/tokio-timer/Cargo.toml index 1dee3498f..fa1bcd074 100644 --- a/tokio-timer/Cargo.toml +++ b/tokio-timer/Cargo.toml @@ -4,7 +4,7 @@ name = "tokio-timer" # - Update html_root_url. # - Update CHANGELOG.md. # - Create "v0.2.x" git tag. -version = "0.2.4" +version = "0.2.5" authors = ["Carl Lerche "] license = "MIT" readme = "README.md" diff --git a/tokio-timer/src/lib.rs b/tokio-timer/src/lib.rs index d642c48d3..754f9aa88 100644 --- a/tokio-timer/src/lib.rs +++ b/tokio-timer/src/lib.rs @@ -18,7 +18,7 @@ //! [`Interval`]: struct.Interval.html //! [`Timer`]: timer/struct.Timer.html -#![doc(html_root_url = "https://docs.rs/tokio-timer/0.2.4")] +#![doc(html_root_url = "https://docs.rs/tokio-timer/0.2.5")] #![deny(missing_docs, warnings, missing_debug_implementations)] extern crate tokio_executor;