mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-09-25 12:00:35 +00:00
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
This commit is contained in:
parent
0490280d66
commit
e964c4136c
@ -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)
|
||||
|
@ -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"
|
||||
|
@ -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;
|
||||
|
@ -1,3 +1,11 @@
|
||||
# 0.1.3 (August 6, 2018)
|
||||
|
||||
* Implement `Executor` for `Box<E: Executor>` (#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<Unpark>`.
|
||||
|
@ -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"
|
||||
|
@ -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;
|
||||
|
||||
|
@ -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))
|
||||
|
@ -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 <me@carllerche.com>"]
|
||||
license = "MIT"
|
||||
readme = "README.md"
|
||||
|
@ -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;
|
||||
|
@ -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)
|
||||
|
@ -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 <me@carllerche.com>"]
|
||||
license = "MIT"
|
||||
readme = "README.md"
|
||||
|
@ -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]
|
||||
|
@ -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
|
||||
|
@ -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 <me@carllerche.com>"]
|
||||
license = "MIT"
|
||||
repository = "https://github.com/tokio-rs/tokio"
|
||||
|
@ -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;
|
||||
|
@ -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).
|
||||
|
@ -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 <me@carllerche.com>"]
|
||||
license = "MIT"
|
||||
readme = "README.md"
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user