Skip to content

Commit

Permalink
Bump version of a number of sub crates (tokio-rs#414)
Browse files Browse the repository at this point in the history
This includes:

* tokio-codec (0.1.0)
* tokio-current-thread (0.1.0)
* tokio-fs (0.1.1)
* tokio-io (0.1.7)
* tokio-reactor (0.1.2)
* tokio-udp (0.1.1)
  • Loading branch information
carllerche authored Jun 13, 2018
1 parent 2e0cd29 commit c25ea78
Show file tree
Hide file tree
Showing 16 changed files with 35 additions and 14 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,11 @@ have greater guarantees of stability.

The crates included as part of Tokio are:

* [`tokio-codec`]: Utilities for encoding and decoding protocol frames.

* [`tokio-current-thread`]: Schedule the execution of futures on the current
thread.

* [`tokio-executor`]: Task execution related traits and utilities.

* [`tokio-fs`]: Filesystem (and standard in / out) APIs.
Expand All @@ -132,6 +137,8 @@ The crates included as part of Tokio are:
* [`tokio-uds`]: Unix Domain Socket bindings for use with `tokio-io` and
`tokio-reactor`.

[`tokio-codec`]: tokio-codec
[`tokio-current-thread`]: tokio-current-thread
[`tokio-executor`]: tokio-executor
[`tokio-fs`]: tokio-fs
[`tokio-io`]: tokio-io
Expand Down
2 changes: 1 addition & 1 deletion tokio-codec/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Unreleased
# # 0.1.0 (June 13, 2018)

* Initial release (#353)
2 changes: 1 addition & 1 deletion tokio-codec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ Utilities for encoding and decoding frames.
categories = ["asynchronous"]

[dependencies]
tokio-io = { version = "0.1.6", path = "../tokio-io" }
tokio-io = { version = "0.1.7", path = "../tokio-io" }
bytes = "0.4.7"
futures = "0.1.18"
2 changes: 1 addition & 1 deletion tokio-current-thread/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Unreleased
# 0.1.0 (June 13, 2018)

* Extract `tokio::executor::current_thread` to a tokio-current-thread crate (#356)
4 changes: 3 additions & 1 deletion tokio-fs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Unreleased
# 0.1.1 (June 13, 2018)

* Add `OpenOptions` (#390)
* Add `into_std` to `File` (#403)
* Use `tokio-codec` in examples

# 0.1.0 (May 2, 2018)
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.0"
version = "0.1.1"
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
readme = "README.md"
Expand Down
3 changes: 3 additions & 0 deletions tokio-fs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
//!
//! [blocking]: https://docs.rs/tokio-threadpool/0.1/tokio_threadpool/fn.blocking.html
#![deny(missing_docs, missing_debug_implementations, warnings)]
#![doc(html_root_url = "https://docs.rs/tokio-fs/0.1.1")]

#[macro_use]
extern crate futures;
extern crate tokio_io;
Expand Down
2 changes: 1 addition & 1 deletion tokio-io/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Unreleased
# 0.1.7 (June 13, 2018)

* Move `codec::{Encode, Decode, Framed*}` into `tokio-codec` (#353)

Expand Down
2 changes: 1 addition & 1 deletion tokio-io/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name = "tokio-io"
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
version = "0.1.6"
version = "0.1.7"
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
Expand Down
2 changes: 1 addition & 1 deletion tokio-io/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//! [low level details]: https://tokio.rs/docs/going-deeper-tokio/core-low-level/
#![deny(missing_docs, missing_debug_implementations, warnings)]
#![doc(html_root_url = "https://docs.rs/tokio-io/0.1.6")]
#![doc(html_root_url = "https://docs.rs/tokio-io/0.1.7")]

#[macro_use]
extern crate log;
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.2 (June 13, 2018)

* Fix deadlock that can happen when shutting down (#409)
* Handle::default() lazily binds to reactor (#350)

# 0.1.1 (March 22, 2018)

* Fix threading bugs (#227)
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.1"
version = "0.1.2"
authors = ["Carl Lerche <[email protected]>"]
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.1")]
#![doc(html_root_url = "https://docs.rs/tokio-reactor/0.1.2")]
#![deny(missing_docs, warnings, missing_debug_implementations)]

#[macro_use]
Expand Down
6 changes: 5 additions & 1 deletion tokio-udp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.1.0 (unreleased)
# 0.1.1 (June 13, 2018)

* Switch to tokio-codec (#360)

# 0.1.0 (Mar 23, 2018)

* Initial release
4 changes: 2 additions & 2 deletions tokio-udp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name = "tokio-udp"
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
version = "0.1.0"
version = "0.1.1"
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
Expand All @@ -18,7 +18,7 @@ categories = ["asynchronous"]

[dependencies]
tokio-codec = { version = "0.1.0", path = "../tokio-codec" }
tokio-io = { version = "0.1.6", path = "../tokio-io" }
tokio-io = { version = "0.1.7", path = "../tokio-io" }
tokio-reactor = { version = "0.1.1", path = "../tokio-reactor" }
bytes = "0.4"
mio = "0.6.14"
Expand Down
2 changes: 1 addition & 1 deletion tokio-udp/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//! [`UdpFramed`]: struct.UdpFramed.html
//! [`framed`]: struct.UdpSocket.html#method.framed
#![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

0 comments on commit c25ea78

Please sign in to comment.