Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions tokio-current-thread/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
2 changes: 1 addition & 1 deletion tokio-current-thread/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion tokio-current-thread/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
8 changes: 8 additions & 0 deletions tokio-executor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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>`.
Expand Down
2 changes: 1 addition & 1 deletion tokio-executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion tokio-executor/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
4 changes: 4 additions & 0 deletions tokio-fs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
Expand Down
2 changes: 1 addition & 1 deletion tokio-fs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion tokio-fs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 4 additions & 0 deletions tokio-reactor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion tokio-reactor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion tokio-reactor/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
6 changes: 5 additions & 1 deletion tokio-tcp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion tokio-tcp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion tokio-tcp/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 4 additions & 0 deletions tokio-timer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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).
Expand Down
2 changes: 1 addition & 1 deletion tokio-timer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion tokio-timer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down