summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md8
-rw-r--r--ci/azure-test-nightly.yml4
-rw-r--r--tokio-macros/Cargo.toml8
-rw-r--r--tokio-timer/CHANGELOG.md5
-rw-r--r--tokio-timer/Cargo.toml2
-rw-r--r--tokio-timer/README.md2
-rw-r--r--tokio/CHANGELOG.md11
-rw-r--r--tokio/Cargo.toml9
-rw-r--r--tokio/src/lib.rs2
9 files changed, 32 insertions, 19 deletions
diff --git a/README.md b/README.md
index 20f5bf18..0a019e5f 100644
--- a/README.md
+++ b/README.md
@@ -28,7 +28,7 @@ the Rust programming language. It is:
[Website](https://tokio.rs) |
[Guides](https://tokio.rs/docs/getting-started/hello-world/) |
-[API Docs](https://docs.rs/tokio/0.1.19/tokio) |
+[API Docs](https://docs.rs/tokio/0.1.20/tokio) |
[Chat](https://gitter.im/tokio-rs/tokio)
The API docs for the master branch are published [here][master-dox].
@@ -49,9 +49,9 @@ level, it provides a few major components:
These components provide the runtime components necessary for building
an asynchronous application.
-[net]: https://docs.rs/tokio/0.1.19/tokio/net/index.html
-[reactor]: https://docs.rs/tokio/0.1.19/tokio/reactor/index.html
-[scheduler]: https://docs.rs/tokio/0.1.19/tokio/runtime/index.html
+[net]: https://docs.rs/tokio/0.1.20/tokio/net/index.html
+[reactor]: https://docs.rs/tokio/0.1.20/tokio/reactor/index.html
+[scheduler]: https://docs.rs/tokio/0.1.20/tokio/runtime/index.html
## Example
diff --git a/ci/azure-test-nightly.yml b/ci/azure-test-nightly.yml
index a845d7c2..d739a1a9 100644
--- a/ci/azure-test-nightly.yml
+++ b/ci/azure-test-nightly.yml
@@ -11,10 +11,6 @@ jobs:
- template: azure-patch-crates.yml
- - script: cargo test
- displayName: cargo +nightly test -p async-await
- workingDirectory: $(Build.SourcesDirectory)/async-await
-
- script: cargo check --all
displayName: cargo +nightly check --all
diff --git a/tokio-macros/Cargo.toml b/tokio-macros/Cargo.toml
index 46a37856..66b30338 100644
--- a/tokio-macros/Cargo.toml
+++ b/tokio-macros/Cargo.toml
@@ -1,5 +1,13 @@
[package]
name = "tokio-macros"
+# When releasing to crates.io:
+# - Remove path dependencies
+# - Update html_root_url.
+# - Update doc url
+# - Cargo.toml
+# - README.md
+# - Update CHANGELOG.md.
+# - Create "v0.1.x" git tag.
version = "0.1.0"
edition = "2018"
authors = ["Tokio Contributors <team@tokio.rs>"]
diff --git a/tokio-timer/CHANGELOG.md b/tokio-timer/CHANGELOG.md
index be5bf261..ca5d1069 100644
--- a/tokio-timer/CHANGELOG.md
+++ b/tokio-timer/CHANGELOG.md
@@ -1,3 +1,8 @@
+# 0.2.11 (May 14, 2019)
+
+### Added
+- `Handle::timeout` API, replacing the deprecated `Handle::deadline` (#1074).
+
# 0.2.10 (February 4, 2019)
### Fixed
diff --git a/tokio-timer/Cargo.toml b/tokio-timer/Cargo.toml
index eac11d3a..a91043f9 100644
--- a/tokio-timer/Cargo.toml
+++ b/tokio-timer/Cargo.toml
@@ -13,7 +13,7 @@ edition = "2018"
authors = ["Carl Lerche <me@carllerche.com>"]
license = "MIT"
readme = "README.md"
-documentation = "https://docs.rs/tokio-timer/0.2.10/tokio_timer"
+documentation = "https://docs.rs/tokio-timer/0.2.11/tokio_timer"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://github.com/tokio-rs/tokio"
description = """
diff --git a/tokio-timer/README.md b/tokio-timer/README.md
index 9e206060..b4908eed 100644
--- a/tokio-timer/README.md
+++ b/tokio-timer/README.md
@@ -2,7 +2,7 @@
Timer facilities for Tokio
-[Documentation](https://docs.rs/tokio-timer/0.2.10/tokio_timer/)
+[Documentation](https://docs.rs/tokio-timer/0.2.11/tokio_timer/)
## Overview
diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md
index 7ba62581..afb0f934 100644
--- a/tokio/CHANGELOG.md
+++ b/tokio/CHANGELOG.md
@@ -1,6 +1,17 @@
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.20 (May 14, 2019)
+
+### Added
+- `tokio::runtime::Builder::panic_handler` allows configuring handling
+ panics on the runtime (#1055).
+
+# 0.1.19 (April 22, 2019)
+
+### Added
+- Re-export `tokio::sync::Mutex` primitive (#964).
+
# 0.1.18 (March 22, 2019)
### Added
diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml
index 54d8e024..7fb6d4be 100644
--- a/tokio/Cargo.toml
+++ b/tokio/Cargo.toml
@@ -13,7 +13,7 @@ edition = "2018"
authors = ["Carl Lerche <me@carllerche.com>"]
license = "MIT"
readme = "README.md"
-documentation = "https://docs.rs/tokio/0.1.19/tokio/"
+documentation = "https://docs.rs/tokio/0.1.20/tokio/"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
description = """
@@ -57,13 +57,6 @@ timer = ["tokio-timer"]
udp = ["tokio-udp"]
uds = ["tokio-uds"]
-# This feature comes with no promise of stability. Things will
-# break with each patch release. Use at your own risk.
-async-await-preview = [
- "tokio-futures/async-await-preview",
- "tokio-macros/async-await-preview",
-]
-
[dependencies]
# Only non-optional dependency...
futures = "0.1.20"
diff --git a/tokio/src/lib.rs b/tokio/src/lib.rs
index d159bb58..99fdae85 100644
--- a/tokio/src/lib.rs
+++ b/tokio/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/tokio/0.1.19")]
+#![doc(html_root_url = "https://docs.rs/tokio/0.1.20")]
#![deny(missing_docs, missing_debug_implementations, rust_2018_idioms)]
#![cfg_attr(test, deny(warnings))]
#![cfg_attr(feature = "async-await-preview", feature(async_await, await_macro))]