mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-10-01 12:20:39 +00:00
Bump version to v0.1.7 (#396)
This also bumps the versions of: * tokio-threadpool * tokio-timer
This commit is contained in:
parent
db620b42ec
commit
dba5c27296
@ -1,3 +1,10 @@
|
|||||||
|
# 0.1.7 (June 6, 2018)
|
||||||
|
|
||||||
|
* Add `Runtime::block_on` for concurrent runtime (#391).
|
||||||
|
* Provide handle to `current_thread::Runtime` that allows spawning tasks from
|
||||||
|
other threads (#340).
|
||||||
|
* Provide `clock::now()`, a configurable source of time (#381).
|
||||||
|
|
||||||
# 0.1.6 (May 2, 2018)
|
# 0.1.6 (May 2, 2018)
|
||||||
|
|
||||||
* Add asynchronous filesystem APIs (#323).
|
* Add asynchronous filesystem APIs (#323).
|
||||||
|
@ -5,7 +5,7 @@ name = "tokio"
|
|||||||
# - Update html_root_url.
|
# - Update html_root_url.
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Create "v0.1.x" git tag.
|
# - Create "v0.1.x" git tag.
|
||||||
version = "0.1.6"
|
version = "0.1.7"
|
||||||
authors = ["Carl Lerche <me@carllerche.com>"]
|
authors = ["Carl Lerche <me@carllerche.com>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
@ -44,10 +44,10 @@ tokio-codec = { version = "0.1.0", path = "tokio-codec" }
|
|||||||
tokio-io = { version = "0.1.6", path = "tokio-io" }
|
tokio-io = { version = "0.1.6", path = "tokio-io" }
|
||||||
tokio-executor = { version = "0.1.2", path = "tokio-executor" }
|
tokio-executor = { version = "0.1.2", path = "tokio-executor" }
|
||||||
tokio-reactor = { version = "0.1.1", path = "tokio-reactor" }
|
tokio-reactor = { version = "0.1.1", path = "tokio-reactor" }
|
||||||
tokio-threadpool = { version = "0.1.3", path = "tokio-threadpool" }
|
tokio-threadpool = { version = "0.1.4", path = "tokio-threadpool" }
|
||||||
tokio-tcp = { version = "0.1.0", path = "tokio-tcp" }
|
tokio-tcp = { version = "0.1.0", path = "tokio-tcp" }
|
||||||
tokio-udp = { version = "0.1.0", path = "tokio-udp" }
|
tokio-udp = { version = "0.1.0", path = "tokio-udp" }
|
||||||
tokio-timer = { version = "0.2.1", path = "tokio-timer" }
|
tokio-timer = { version = "0.2.4", path = "tokio-timer" }
|
||||||
tokio-fs = { version = "0.1.0", path = "tokio-fs" }
|
tokio-fs = { version = "0.1.0", path = "tokio-fs" }
|
||||||
|
|
||||||
futures = "0.1.20"
|
futures = "0.1.20"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
# 0.1.4 (June 6, 2018)
|
||||||
|
|
||||||
|
* Fix bug that can occur with multiple pools in a process (#375).
|
||||||
|
|
||||||
# 0.1.3 (May 2, 2018)
|
# 0.1.3 (May 2, 2018)
|
||||||
|
|
||||||
* Add `blocking` annotation (#317).
|
* Add `blocking` annotation (#317).
|
||||||
|
@ -1,6 +1,10 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "tokio-threadpool"
|
name = "tokio-threadpool"
|
||||||
version = "0.1.3"
|
# When releasing to crates.io:
|
||||||
|
# - Update html_root_url.
|
||||||
|
# - Update CHANGELOG.md.
|
||||||
|
# - Create "v0.1.x" git tag.
|
||||||
|
version = "0.1.4"
|
||||||
documentation = "https://docs.rs/tokio-threadpool"
|
documentation = "https://docs.rs/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"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
//! A work-stealing based thread pool for executing futures.
|
//! A work-stealing based thread pool for executing futures.
|
||||||
|
|
||||||
#![doc(html_root_url = "https://docs.rs/tokio-threadpool/0.1.2")]
|
#![doc(html_root_url = "https://docs.rs/tokio-threadpool/0.1.4")]
|
||||||
#![deny(warnings, missing_docs, missing_debug_implementations)]
|
#![deny(warnings, missing_docs, missing_debug_implementations)]
|
||||||
|
|
||||||
extern crate tokio_executor;
|
extern crate tokio_executor;
|
||||||
|
@ -1,7 +1,14 @@
|
|||||||
# 0.2.2 (May 2, 2018)
|
# 0.2.4 (June 6, 2018)
|
||||||
|
|
||||||
|
* Add `sleep` function for easy interval delays (#347).
|
||||||
|
* Provide `clock::now()`, a configurable source of time (#381).
|
||||||
|
|
||||||
|
# 0.2.3 (May 2, 2018)
|
||||||
|
|
||||||
* Improve parking semantics (#327).
|
* Improve parking semantics (#327).
|
||||||
|
|
||||||
|
# 0.2.2 (Skipped due to failure in counting module)
|
||||||
|
|
||||||
# 0.2.1 (April 2, 2018)
|
# 0.2.1 (April 2, 2018)
|
||||||
|
|
||||||
* Fix build on 32-bit systems (#274).
|
* Fix build on 32-bit systems (#274).
|
||||||
|
@ -1,6 +1,10 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "tokio-timer"
|
name = "tokio-timer"
|
||||||
version = "0.2.3"
|
# When releasing to crates.io:
|
||||||
|
# - Update html_root_url.
|
||||||
|
# - Update CHANGELOG.md.
|
||||||
|
# - Create "v0.2.x" git tag.
|
||||||
|
version = "0.2.4"
|
||||||
authors = ["Carl Lerche <me@carllerche.com>"]
|
authors = ["Carl Lerche <me@carllerche.com>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
//! [`Interval`]: struct.Interval.html
|
//! [`Interval`]: struct.Interval.html
|
||||||
//! [`Timer`]: timer/struct.Timer.html
|
//! [`Timer`]: timer/struct.Timer.html
|
||||||
|
|
||||||
#![doc(html_root_url = "https://docs.rs/tokio-timer/0.2.0")]
|
#![doc(html_root_url = "https://docs.rs/tokio-timer/0.2.4")]
|
||||||
#![deny(missing_docs, warnings, missing_debug_implementations)]
|
#![deny(missing_docs, warnings, missing_debug_implementations)]
|
||||||
|
|
||||||
extern crate tokio_executor;
|
extern crate tokio_executor;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user