mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-09-06 00:00:10 +02:00
Bump version to 0.1.12 (#718)
Also bumps the following sub-crates: * tokio-fs (0.1.4) * tokio-io (0.1.10) * tokio-signal (0.2.6) * tokio-threadpool (0.1.8) * tokio-uds (0.2.3)
This commit is contained in:
@@ -1,6 +1,14 @@
|
|||||||
This changelog only applies to the `tokio` crate proper. Each sub crate
|
This changelog only applies to the `tokio` crate proper. Each sub crate
|
||||||
maintains its own changelog tracking changes made in each respective sub crate.
|
maintains its own changelog tracking changes made in each respective sub crate.
|
||||||
|
|
||||||
|
# 0.1.12 (October 23, 2018)
|
||||||
|
|
||||||
|
* runtime: expose `keep_alive` on runtime builder (#676).
|
||||||
|
* runtime: create a reactor per worker thread (#660).
|
||||||
|
* codec: fix panic in `LengthDelimitedCodec` (#682).
|
||||||
|
* io: re-export `tokio_io::io::read` function (#689).
|
||||||
|
* runtime: check for executor re-entry in more places (#708).
|
||||||
|
|
||||||
# 0.1.11 (September 28, 2018)
|
# 0.1.11 (September 28, 2018)
|
||||||
|
|
||||||
* Fix `tokio-async-await` dependency (#675).
|
* Fix `tokio-async-await` dependency (#675).
|
||||||
|
|||||||
+2
-2
@@ -6,11 +6,11 @@ name = "tokio"
|
|||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Update doc URL.
|
# - Update doc URL.
|
||||||
# - Create "v0.1.x" git tag.
|
# - Create "v0.1.x" git tag.
|
||||||
version = "0.1.11"
|
version = "0.1.12"
|
||||||
authors = ["Carl Lerche <[email protected]>"]
|
authors = ["Carl Lerche <[email protected]>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
documentation = "https://docs.rs/tokio/0.1.11/tokio/"
|
documentation = "https://docs.rs/tokio/0.1.12/tokio/"
|
||||||
repository = "https://github.com/tokio-rs/tokio"
|
repository = "https://github.com/tokio-rs/tokio"
|
||||||
homepage = "https://tokio.rs"
|
homepage = "https://tokio.rs"
|
||||||
description = """
|
description = """
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
#![doc(html_root_url = "https://docs.rs/tokio/0.1.11")]
|
#![doc(html_root_url = "https://docs.rs/tokio/0.1.12")]
|
||||||
#![deny(missing_docs, warnings, missing_debug_implementations)]
|
#![deny(missing_docs, warnings, missing_debug_implementations)]
|
||||||
#![cfg_attr(feature = "async-await-preview", feature(
|
#![cfg_attr(feature = "async-await-preview", feature(
|
||||||
async_await,
|
async_await,
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
# 0.1.4 (October 23, 2018)
|
||||||
|
|
||||||
|
* Provide `File::from_std` (#696).
|
||||||
|
|
||||||
# 0.1.3 (August 6, 2018)
|
# 0.1.3 (August 6, 2018)
|
||||||
|
|
||||||
* Add async equivalents to most of `std::fs` (#494).
|
* Add async equivalents to most of `std::fs` (#494).
|
||||||
|
|||||||
+3
-2
@@ -4,14 +4,15 @@ name = "tokio-fs"
|
|||||||
# When releasing to crates.io:
|
# When releasing to crates.io:
|
||||||
# - Update html_root_url.
|
# - Update html_root_url.
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
|
# - Update doc URL.
|
||||||
# - Create "v0.1.x" git tag.
|
# - Create "v0.1.x" git tag.
|
||||||
version = "0.1.3"
|
version = "0.1.4"
|
||||||
authors = ["Carl Lerche <[email protected]>"]
|
authors = ["Carl Lerche <[email protected]>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/tokio-rs/tokio"
|
repository = "https://github.com/tokio-rs/tokio"
|
||||||
homepage = "https://tokio.rs"
|
homepage = "https://tokio.rs"
|
||||||
documentation = "https://docs.rs/tokio-fs/0.1"
|
documentation = "https://docs.rs/tokio-fs/0.1.4/tokio_fs"
|
||||||
description = """
|
description = """
|
||||||
Filesystem API for Tokio.
|
Filesystem API for Tokio.
|
||||||
"""
|
"""
|
||||||
|
|||||||
+3
-3
@@ -1,3 +1,6 @@
|
|||||||
|
#![deny(missing_docs, missing_debug_implementations, warnings)]
|
||||||
|
#![doc(html_root_url = "https://docs.rs/tokio-fs/0.1.4")]
|
||||||
|
|
||||||
//! Asynchronous file and standard stream adaptation.
|
//! Asynchronous file and standard stream adaptation.
|
||||||
//!
|
//!
|
||||||
//! This module contains utility methods and adapter types for input/output to
|
//! This module contains utility methods and adapter types for input/output to
|
||||||
@@ -25,9 +28,6 @@
|
|||||||
//! [`AsyncRead`]: https://docs.rs/tokio-io/0.1/tokio_io/trait.AsyncRead.html
|
//! [`AsyncRead`]: https://docs.rs/tokio-io/0.1/tokio_io/trait.AsyncRead.html
|
||||||
//! [tokio-threadpool]: https://docs.rs/tokio-threadpool/0.1/tokio_threadpool
|
//! [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.3")]
|
|
||||||
|
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate futures;
|
extern crate futures;
|
||||||
extern crate tokio_io;
|
extern crate tokio_io;
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
# 0.1.10 (October 23, 2018)
|
||||||
|
|
||||||
|
* Expose inner codec from `Framed` (#686).
|
||||||
|
* Implement AsyncRead::prepare_uninitialized_buffer for Take and Chain (#678).
|
||||||
|
|
||||||
# 0.1.9 (September 27, 2018)
|
# 0.1.9 (September 27, 2018)
|
||||||
|
|
||||||
* Fix bug in `AsyncRead::split()` (#655).
|
* Fix bug in `AsyncRead::split()` (#655).
|
||||||
|
|||||||
+2
-2
@@ -6,12 +6,12 @@ name = "tokio-io"
|
|||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Update doc URL.
|
# - Update doc URL.
|
||||||
# - Create "v0.1.x" git tag.
|
# - Create "v0.1.x" git tag.
|
||||||
version = "0.1.9"
|
version = "0.1.10"
|
||||||
authors = ["Carl Lerche <[email protected]>"]
|
authors = ["Carl Lerche <[email protected]>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/tokio-rs/tokio"
|
repository = "https://github.com/tokio-rs/tokio"
|
||||||
homepage = "https://tokio.rs"
|
homepage = "https://tokio.rs"
|
||||||
documentation = "https://docs.rs/tokio-io/0.1.9/tokio_io"
|
documentation = "https://docs.rs/tokio-io/0.1.10/tokio_io"
|
||||||
description = """
|
description = """
|
||||||
Core I/O primitives for asynchronous I/O in Rust.
|
Core I/O primitives for asynchronous I/O in Rust.
|
||||||
"""
|
"""
|
||||||
|
|||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
#![deny(missing_docs, missing_debug_implementations, warnings)]
|
#![deny(missing_docs, missing_debug_implementations, warnings)]
|
||||||
#![doc(html_root_url = "https://docs.rs/tokio-io/0.1.9")]
|
#![doc(html_root_url = "https://docs.rs/tokio-io/0.1.10")]
|
||||||
|
|
||||||
//! Core I/O traits and combinators when working with Tokio.
|
//! Core I/O traits and combinators when working with Tokio.
|
||||||
//!
|
//!
|
||||||
|
|||||||
@@ -1,11 +1,17 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "tokio-signal"
|
name = "tokio-signal"
|
||||||
|
|
||||||
|
# When releasing to crates.io:
|
||||||
|
# - Update html_root_url.
|
||||||
|
# - Update CHANGELOG.md.
|
||||||
|
# - Update doc URL.
|
||||||
|
# - Create "v0.2.x" git tag.
|
||||||
version = "0.2.6"
|
version = "0.2.6"
|
||||||
authors = ["Alex Crichton <[email protected]>"]
|
authors = ["Alex Crichton <[email protected]>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/tokio-rs/tokio"
|
repository = "https://github.com/tokio-rs/tokio"
|
||||||
homepage = "https://github.com/tokio-rs/tokio"
|
homepage = "https://github.com/tokio-rs/tokio"
|
||||||
documentation = "https://docs.rs/tokio-signal/0.2"
|
documentation = "https://docs.rs/tokio-signal/0.2.6/tokio_signal"
|
||||||
description = """
|
description = """
|
||||||
An implementation of an asynchronous Unix signal handling backed futures.
|
An implementation of an asynchronous Unix signal handling backed futures.
|
||||||
"""
|
"""
|
||||||
|
|||||||
@@ -1,3 +1,9 @@
|
|||||||
|
# 0.1.8 (October 23, 2018)
|
||||||
|
|
||||||
|
* Assign spawned tasks to random worker (#660).
|
||||||
|
* Worker threads no longer shutdown (#692).
|
||||||
|
* Reduce atomic ops in notifier (#702).
|
||||||
|
|
||||||
# 0.1.7 (September 27, 2018)
|
# 0.1.7 (September 27, 2018)
|
||||||
|
|
||||||
* Add ThreadPool::spawn_handle (#602, #604).
|
* Add ThreadPool::spawn_handle (#602, #604).
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ name = "tokio-threadpool"
|
|||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Update doc URL.
|
# - Update doc URL.
|
||||||
# - Create "v0.1.x" git tag.
|
# - Create "v0.1.x" git tag.
|
||||||
version = "0.1.7"
|
version = "0.1.8"
|
||||||
documentation = "https://docs.rs/tokio-threadpool/0.1.7/tokio_threadpool"
|
documentation = "https://docs.rs/tokio-threadpool/0.1.8/tokio_threadpool"
|
||||||
repository = "https://github.com/tokio-rs/tokio"
|
repository = "https://github.com/tokio-rs/tokio"
|
||||||
homepage = "https://github.com/tokio-rs/tokio"
|
homepage = "https://github.com/tokio-rs/tokio"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#![doc(html_root_url = "https://docs.rs/tokio-threadpool/0.1.7")]
|
#![doc(html_root_url = "https://docs.rs/tokio-threadpool/0.1.8")]
|
||||||
#![deny(warnings, missing_docs, missing_debug_implementations)]
|
#![deny(warnings, missing_docs, missing_debug_implementations)]
|
||||||
|
|
||||||
//! A work-stealing based thread pool for executing futures.
|
//! A work-stealing based thread pool for executing futures.
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
# 0.2.3 (October 23, 2018)
|
||||||
|
|
||||||
|
* Fix build on NetBSD (#715).
|
||||||
|
|
||||||
# 0.2.2 (September 27, 2018)
|
# 0.2.2 (September 27, 2018)
|
||||||
|
|
||||||
* Fix bug in `UdsStream::read_buf` (#672).
|
* Fix bug in `UdsStream::read_buf` (#672).
|
||||||
|
|||||||
@@ -5,12 +5,12 @@ name = "tokio-uds"
|
|||||||
# - Update doc url
|
# - Update doc url
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Create "v0.2.x" git tag.
|
# - Create "v0.2.x" git tag.
|
||||||
version = "0.2.2"
|
version = "0.2.3"
|
||||||
authors = ["Carl Lerche <[email protected]>"]
|
authors = ["Carl Lerche <[email protected]>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/tokio-rs/tokio"
|
repository = "https://github.com/tokio-rs/tokio"
|
||||||
homepage = "https://github.com/tokio-rs/tokio"
|
homepage = "https://github.com/tokio-rs/tokio"
|
||||||
documentation = "https://docs.rs/tokio-uds/0.2.2/tokio_uds/"
|
documentation = "https://docs.rs/tokio-uds/0.2.3/tokio_uds/"
|
||||||
description = """
|
description = """
|
||||||
Unix Domain sockets for Tokio
|
Unix Domain sockets for Tokio
|
||||||
"""
|
"""
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
|
#![cfg(unix)]
|
||||||
|
#![doc(html_root_url = "https://docs.rs/tokio-uds/0.2.3")]
|
||||||
|
#![deny(missing_docs, warnings, missing_debug_implementations)]
|
||||||
|
|
||||||
//! Unix Domain Sockets for Tokio.
|
//! Unix Domain Sockets for Tokio.
|
||||||
//!
|
//!
|
||||||
//! This crate provides APIs for using Unix Domain Sockets with Tokio.
|
//! This crate provides APIs for using Unix Domain Sockets with Tokio.
|
||||||
|
|
||||||
#![cfg(unix)]
|
|
||||||
#![doc(html_root_url = "https://docs.rs/tokio-uds/0.2.2")]
|
|
||||||
#![deny(missing_docs, warnings, missing_debug_implementations)]
|
|
||||||
|
|
||||||
extern crate bytes;
|
extern crate bytes;
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate futures;
|
extern crate futures;
|
||||||
|
|||||||
Reference in New Issue
Block a user