Skip to content

Commit

Permalink
Bump version to v0.1.13 (#771)
Browse files Browse the repository at this point in the history
This also bumps the following sub crate versions:

* tokio-current-thread (0.1.4)
* tokio-reactor (0.1.7)
* tokio-signal (0.2.7)
* tokio-threadpool (0.1.9)
* tokio-timer (0.2.8)
* tokio-udp (0.1.3)
* tokio-uds (0.2.4)
  • Loading branch information
carllerche authored Nov 22, 2018
1 parent 272e09d commit b117fc1
Show file tree
Hide file tree
Showing 24 changed files with 66 additions and 26 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
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.13 (November 21, 2018)

* Fix `Runtime::reactor()` when no tasks are spawned (#721).
* `runtime::Builder` no longer uses deprecated methods (#749).
* Provide `after_start` and `before_stop` configuration settings for
`Runtime` (#756).
* Implement throttle stream combinator (#736).

# 0.1.12 (October 23, 2018)

* runtime: expose `keep_alive` on runtime builder (#676).
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ name = "tokio"
# - Update CHANGELOG.md.
# - Update doc URL.
# - Create "v0.1.x" git tag.
version = "0.1.12"
version = "0.1.13"
authors = ["Carl Lerche <me@carllerche.com>"]
license = "MIT"
readme = "README.md"
documentation = "https://docs.rs/tokio/0.1.12/tokio/"
documentation = "https://docs.rs/tokio/0.1.13/tokio/"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
description = """
Expand Down Expand Up @@ -64,7 +64,7 @@ tokio-reactor = { version = "0.1.1", path = "tokio-reactor" }
tokio-threadpool = { version = "0.1.4", path = "tokio-threadpool" }
tokio-tcp = { version = "0.1.0", path = "tokio-tcp" }
tokio-udp = { version = "0.1.0", path = "tokio-udp" }
tokio-timer = { version = "0.2.6", path = "tokio-timer" }
tokio-timer = { version = "0.2.8", path = "tokio-timer" }
tokio-fs = { version = "0.1.3", path = "tokio-fs" }

futures = "0.1.20"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tokio/0.1.12")]
#![doc(html_root_url = "https://docs.rs/tokio/0.1.13")]
#![deny(missing_docs, warnings, missing_debug_implementations)]
#![cfg_attr(feature = "async-await-preview", feature(
async_await,
Expand Down
4 changes: 4 additions & 0 deletions tokio-current-thread/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.1.4 (November 21, 2018)

* Fix shutdown on idle (#763).

# 0.1.3 (September 27, 2018)

* Fix minimal versions
Expand Down
4 changes: 2 additions & 2 deletions tokio-current-thread/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ name = "tokio-current-thread"
# - Update doc URL
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
version = "0.1.3"
documentation = "https://docs.rs/tokio-current-thread/0.1.3/tokio_current_thread"
version = "0.1.4"
documentation = "https://docs.rs/tokio-current-thread/0.1.4/tokio_current_thread"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://github.com/tokio-rs/tokio"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion tokio-current-thread/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tokio-current-thread/0.1.3")]
#![doc(html_root_url = "https://docs.rs/tokio-current-thread/0.1.4")]
#![deny(warnings, missing_docs, missing_debug_implementations)]

//! A single-threaded executor which executes tasks on the same thread from which
Expand Down
5 changes: 5 additions & 0 deletions tokio-reactor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 0.1.7 (November 21, 2018)

* Reduce log level to trace (#734).
* Bump internal dependency versions (#746).

# 0.1.6 (September 27, 2018)

* Fix panic when reactor is stored in a thread-local (#628).
Expand Down
4 changes: 2 additions & 2 deletions tokio-reactor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ name = "tokio-reactor"
# - Update CHANGELOG.md.
# - Update doc URL.
# - Create "v0.1.x" git tag.
version = "0.1.6"
version = "0.1.7"
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.6/tokio_reactor"
documentation = "https://docs.rs/tokio-reactor/0.1.7/tokio_reactor"
description = """
Event loop that drives Tokio I/O resources.
"""
Expand Down
2 changes: 1 addition & 1 deletion tokio-reactor/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tokio-reactor/0.1.6")]
#![doc(html_root_url = "https://docs.rs/tokio-reactor/0.1.7")]
#![deny(missing_docs, warnings, missing_debug_implementations)]

//! Event loop that drives Tokio I/O resources.
Expand Down
3 changes: 2 additions & 1 deletion tokio-signal/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## Unreleased
## 0.2.7 - (November 21, 2018)
### Changed
* `unix::Signal` now implements `Sync`
* minimize allocations

### Fixes
* `unix::Signal` now avoids extraneous wakeups generated as a result of
Expand Down
4 changes: 2 additions & 2 deletions tokio-signal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ name = "tokio-signal"
# - Update CHANGELOG.md.
# - Update doc URL.
# - Create "v0.2.x" git tag.
version = "0.2.6"
version = "0.2.7"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://github.com/tokio-rs/tokio"
documentation = "https://docs.rs/tokio-signal/0.2.6/tokio_signal"
documentation = "https://docs.rs/tokio-signal/0.2.7/tokio_signal"
description = """
An implementation of an asynchronous Unix signal handling backed futures.
"""
Expand Down
2 changes: 1 addition & 1 deletion tokio-signal/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
//! # fn main() {}
//! ```

#![doc(html_root_url = "https://docs.rs/tokio-signal/0.2")]
#![doc(html_root_url = "https://docs.rs/tokio-signal/0.2.7")]
#![deny(missing_docs)]

extern crate futures;
Expand Down
5 changes: 5 additions & 0 deletions tokio-threadpool/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 0.1.9 (November 21, 2018)

* Bump internal dependency versions (#746, #753).
* Internal refactors (#768, #769).

# 0.1.8 (October 23, 2018)

* Assign spawned tasks to random worker (#660).
Expand Down
4 changes: 2 additions & 2 deletions tokio-threadpool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ name = "tokio-threadpool"
# - Update CHANGELOG.md.
# - Update doc URL.
# - Create "v0.1.x" git tag.
version = "0.1.8"
documentation = "https://docs.rs/tokio-threadpool/0.1.8/tokio_threadpool"
version = "0.1.9"
documentation = "https://docs.rs/tokio-threadpool/0.1.9/tokio_threadpool"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://github.com/tokio-rs/tokio"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion tokio-threadpool/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tokio-threadpool/0.1.8")]
#![doc(html_root_url = "https://docs.rs/tokio-threadpool/0.1.9")]
#![deny(warnings, missing_docs, missing_debug_implementations)]

//! A work-stealing based thread pool for executing futures.
Expand Down
6 changes: 6 additions & 0 deletions tokio-timer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 0.2.8 (November 21, 2018)

* Implement throttle combinator (#736).
* Derive `Clone` for `delay_queue::Key` (#730).
* Bump internal dependencies (#753).

# 0.2.7 (September 27, 2018)

* Fix `Timeout` on error bug (#648).
Expand Down
4 changes: 2 additions & 2 deletions tokio-timer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ name = "tokio-timer"
# - Update CHANGELOG.md.
# - Update doc URL.
# - Create "v0.2.x" git tag.
version = "0.2.7"
version = "0.2.8"
authors = ["Carl Lerche <me@carllerche.com>"]
license = "MIT"
readme = "README.md"
documentation = "https://docs.rs/tokio-timer/0.2.7/tokio_timer"
documentation = "https://docs.rs/tokio-timer/0.2.8/tokio_timer"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://github.com/tokio-rs/tokio"
description = """
Expand Down
2 changes: 1 addition & 1 deletion tokio-timer/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tokio-timer/0.2.7")]
#![doc(html_root_url = "https://docs.rs/tokio-timer/0.2.8")]
#![deny(missing_docs, warnings, missing_debug_implementations)]

//! Utilities for tracking time.
Expand Down
4 changes: 4 additions & 0 deletions tokio-udp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.1.3 (November 21, 2018)

* Add `RecvDgram::into_parts` (#710).

# 0.1.2 (August 23, 2018)

* Provide methods to inspect readiness (#522)
Expand Down
4 changes: 2 additions & 2 deletions tokio-udp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ name = "tokio-udp"
# - Update CHANGELOG.md.
# - Update doc URL.
# - Create "v0.1.x" git tag.
version = "0.1.2"
version = "0.1.3"
authors = ["Carl Lerche <me@carllerche.com>"]
license = "MIT"
documentation = "https://docs.rs/tokio-udp/0.1.2/tokio_udp"
documentation = "https://docs.rs/tokio-udp/0.1.3/tokio_udp"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
description = """
Expand Down
2 changes: 1 addition & 1 deletion tokio-udp/src/lib.rs
Original file line number Diff line number Diff line change
@@ -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)]

//! UDP bindings for `tokio`.
Expand Down
7 changes: 7 additions & 0 deletions tokio-uds/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 0.2.4 (November 24, 2018)

* Implement `UnixDatagramFramed`, providing a `Stream + Sink` layer for
unix domain sockets (#453).
* Add solaris support for `ucred` (#733).
* Documentation tweaks (#754).

# 0.2.3 (October 23, 2018)

* Fix build on NetBSD (#715).
Expand Down
4 changes: 2 additions & 2 deletions tokio-uds/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ name = "tokio-uds"
# - Update doc url
# - Update CHANGELOG.md.
# - Create "v0.2.x" git tag.
version = "0.2.3"
version = "0.2.4"
authors = ["Carl Lerche <me@carllerche.com>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://github.com/tokio-rs/tokio"
documentation = "https://docs.rs/tokio-uds/0.2.3/tokio_uds/"
documentation = "https://docs.rs/tokio-uds/0.2.4/tokio_uds/"
description = """
Unix Domain sockets for Tokio
"""
Expand Down
2 changes: 1 addition & 1 deletion tokio-uds/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![cfg(unix)]
#![doc(html_root_url = "https://docs.rs/tokio-uds/0.2.3")]
#![doc(html_root_url = "https://docs.rs/tokio-uds/0.2.4")]
#![deny(missing_docs, warnings, missing_debug_implementations)]

//! Unix Domain Sockets for Tokio.
Expand Down

0 comments on commit b117fc1

Please sign in to comment.