Skip to content

Commit

Permalink
Bump version to 0.1.14. (#836)
Browse files Browse the repository at this point in the history
Also bumps:

* tokio-async-await (0.1.5)
* tokio-executor (0.1.6)
* tokio-fs (0.1.5)
* tokio-io (0.1.11)
* tokio-reactor (0.1.8)
* tokio-tcp (0.1.3)
* tokio-threadpool (0.1.10)
* tokio-tls (0.2.1)
* tokio-uds (0.2.5)

...and updates LICENSE files to 2019.
  • Loading branch information
carllerche authored Jan 7, 2019
1 parent 74c73b2 commit 961aae4
Show file tree
Hide file tree
Showing 55 changed files with 115 additions and 57 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
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.14 (January 6, 2019)

* Use feature flags to break up the crate, allowing users to pick & choose
components (#808).
* Export `UnixDatagram` and `UnixDatagramFramed` (#772).

# 0.1.13 (November 21, 2018)

* Fix `Runtime::reactor()` when no tasks are spawned (#721).
Expand Down
4 changes: 2 additions & 2 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.13"
version = "0.1.14"
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
readme = "README.md"
documentation = "https://docs.rs/tokio/0.1.13/tokio/"
documentation = "https://docs.rs/tokio/0.1.14/tokio/"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
description = """
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2018 Tokio Contributors
Copyright (c) 2019 Tokio Contributors

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,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) |
[API Docs](https://docs.rs/tokio/0.1.14/tokio) |
[Chat](https://gitter.im/tokio-rs/tokio)

The API docs for the master branch are published [here][master-dox].
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.13")]
#![doc(html_root_url = "https://docs.rs/tokio/0.1.14")]
#![deny(missing_docs, warnings, missing_debug_implementations)]
#![cfg_attr(feature = "async-await-preview", feature(
async_await,
Expand Down
3 changes: 1 addition & 2 deletions tokio-async-await/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "tokio-async-await"

# When releasing to crates.io:
# - Update html_root_url.
version = "0.1.4"
version = "0.1.5"
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
Expand All @@ -26,5 +26,4 @@ tokio-io = { version = "0.1.7", path = "../tokio-io" }
[dev-dependencies]
bytes = "0.4.9"
tokio = { version = "0.1.8", path = ".." }
# tokio-codec = { version = "0.1.0", path = "../tokio-codec" }
hyper = "0.12.8"
2 changes: 1 addition & 1 deletion tokio-async-await/LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2018 Tokio Contributors
Copyright (c) 2019 Tokio Contributors

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
Expand Down
2 changes: 1 addition & 1 deletion tokio-async-await/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
futures_api,
)]

#![doc(html_root_url = "https://docs.rs/tokio-async-await/0.1.4")]
#![doc(html_root_url = "https://docs.rs/tokio-async-await/0.1.5")]
#![deny(missing_docs, missing_debug_implementations)]
#![cfg_attr(test, deny(warnings))]

Expand Down
2 changes: 1 addition & 1 deletion tokio-buf/LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2018 Tokio Contributors
Copyright (c) 2019 Tokio Contributors

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
Expand Down
2 changes: 1 addition & 1 deletion tokio-channel/LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2018 Tokio Contributors
Copyright (c) 2019 Tokio Contributors

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
Expand Down
2 changes: 1 addition & 1 deletion tokio-codec/LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2018 Tokio Contributors
Copyright (c) 2019 Tokio Contributors

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
Expand Down
2 changes: 1 addition & 1 deletion tokio-current-thread/LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2018 Tokio Contributors
Copyright (c) 2019 Tokio Contributors

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
Expand Down
5 changes: 5 additions & 0 deletions tokio-executor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 0.1.6 (January 6, 2019)

* Implement `Unpark` for `Arc<Unpark>` (#802).
* Switch to crossbeam's Parker / Unparker (#528).

# 0.1.5 (September 26, 2018)

* Implement `futures::Executor` for `DefaultExecutor` (#563).
Expand Down
6 changes: 4 additions & 2 deletions tokio-executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ name = "tokio-executor"
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Update doc URL.
# - Cargo.toml
# - README.md
# - Create "v0.1.x" git tag.
version = "0.1.5"
documentation = "https://docs.rs/tokio-executor/0.1.5/tokio_executor"
version = "0.1.6"
documentation = "https://docs.rs/tokio-executor/0.1.6/tokio_executor"
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-executor/LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2018 Tokio Contributors
Copyright (c) 2019 Tokio Contributors

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
Expand Down
2 changes: 1 addition & 1 deletion tokio-executor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Task execution related traits and utilities.

[Documentation](https://tokio-rs.github.io/tokio/tokio_executor/)
[Documentation](https://docs.rs/tokio-executor/0.1.6/tokio_executor)

## Overview

Expand Down
2 changes: 1 addition & 1 deletion tokio-executor/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![deny(missing_docs, missing_debug_implementations, warnings)]
#![doc(html_root_url = "https://docs.rs/tokio-executor/0.1.5")]
#![doc(html_root_url = "https://docs.rs/tokio-executor/0.1.6")]

//! Task execution related traits and utilities.
//!
Expand Down
4 changes: 4 additions & 0 deletions tokio-fs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.1.5 (January 6, 2019)

* Add examples to `File` API docs (#786).

# 0.1.4 (October 23, 2018)

* Provide `File::from_std` (#696).
Expand Down
6 changes: 4 additions & 2 deletions tokio-fs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,16 @@ name = "tokio-fs"
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Update doc URL.
# - Cargo.toml
# - README.md
# - Create "v0.1.x" git tag.
version = "0.1.4"
version = "0.1.5"
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
documentation = "https://docs.rs/tokio-fs/0.1.4/tokio_fs"
documentation = "https://docs.rs/tokio-fs/0.1.5/tokio_fs"
description = """
Filesystem API for Tokio.
"""
Expand Down
2 changes: 1 addition & 1 deletion tokio-fs/LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2018 Tokio Contributors
Copyright (c) 2019 Tokio Contributors

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
Expand Down
2 changes: 1 addition & 1 deletion tokio-fs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Asynchronous filesystem manipulation operations (and stdin, stdout, stderr).

[Documentation](https://tokio-rs.github.io/tokio/tokio_fs/)
[Documentation](https://docs.rs/tokio-fs/0.1.5/tokio_fs)

## Overview

Expand Down
2 changes: 1 addition & 1 deletion tokio-fs/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![deny(missing_docs, missing_debug_implementations, warnings)]
#![doc(html_root_url = "https://docs.rs/tokio-fs/0.1.4")]
#![doc(html_root_url = "https://docs.rs/tokio-fs/0.1.5")]

//! Asynchronous file and standard stream adaptation.
//!
Expand Down
4 changes: 4 additions & 0 deletions tokio-io/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.1.11 (January 6, 2019)

* Fix minor error in Decoder::decode API documentation (#797).

# 0.1.10 (October 23, 2018)

* Expose inner codec from `Framed` (#686).
Expand Down
6 changes: 4 additions & 2 deletions tokio-io/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@ name = "tokio-io"
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Update doc URL.
# - Cargo.toml
# - Readme.md
# - Create "v0.1.x" git tag.
version = "0.1.10"
version = "0.1.11"
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
documentation = "https://docs.rs/tokio-io/0.1.10/tokio_io"
documentation = "https://docs.rs/tokio-io/0.1.11/tokio_io"
description = """
Core I/O primitives for asynchronous I/O in Rust.
"""
Expand Down
2 changes: 1 addition & 1 deletion tokio-io/LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2018 Tokio Contributors
Copyright (c) 2019 Tokio Contributors

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
Expand Down
2 changes: 1 addition & 1 deletion tokio-io/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Core I/O abstractions for the Tokio stack.

[![Build Status](https://travis-ci.org/tokio-rs/tokio-io.svg?branch=master)](https://travis-ci.org/tokio-rs/tokio-io)

[Documentation](https://docs.rs/tokio-io)
[Documentation](https://docs.rs/tokio-io/0.1.11/tokio_io)

## Usage

Expand Down
2 changes: 1 addition & 1 deletion tokio-io/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![deny(missing_docs, missing_debug_implementations, warnings)]
#![doc(html_root_url = "https://docs.rs/tokio-io/0.1.10")]
#![doc(html_root_url = "https://docs.rs/tokio-io/0.1.11")]

//! Core I/O traits and combinators when working with Tokio.
//!
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.8 (January 6, 2019)

* Update to `parking_lot` 0.7 (#778).
* Deprecate `Handle::current()` (#805).

# 0.1.7 (November 21, 2018)

* Reduce log level to trace (#734).
Expand Down
6 changes: 4 additions & 2 deletions tokio-reactor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,16 @@ name = "tokio-reactor"
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Update doc URL.
# - Cargo.toml
# - README.md
# - Create "v0.1.x" git tag.
version = "0.1.7"
version = "0.1.8"
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
documentation = "https://docs.rs/tokio-reactor/0.1.7/tokio_reactor"
documentation = "https://docs.rs/tokio-reactor/0.1.8/tokio_reactor"
description = """
Event loop that drives Tokio I/O resources.
"""
Expand Down
2 changes: 1 addition & 1 deletion tokio-reactor/LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2018 Tokio Contributors
Copyright (c) 2019 Tokio Contributors

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
Expand Down
2 changes: 1 addition & 1 deletion tokio-reactor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Event loop that drives Tokio I/O resources.

[Documentation](https://tokio-rs.github.io/tokio/tokio_reactor/)
[Documentation](https://docs.rs/tokio-reactor/0.1.8/tokio_reactor)

## Overview

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.7")]
#![doc(html_root_url = "https://docs.rs/tokio-reactor/0.1.8")]
#![deny(missing_docs, warnings, missing_debug_implementations)]

//! Event loop that drives Tokio I/O resources.
Expand Down
2 changes: 1 addition & 1 deletion tokio-signal/LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2016-2018 Tokio contributors
Copyright (c) 2019 Tokio contributors

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
Expand Down
5 changes: 5 additions & 0 deletions tokio-tcp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 0.1.3 (January 6, 2019)

* Deprecate `TcpStream::try_clone()` (#824).
* Add examples to TcpListener and TcpStream API docs (#775).

# 0.1.2 (September 27, 2018)

* Documentation tweaks
Expand Down
6 changes: 4 additions & 2 deletions tokio-tcp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@ name = "tokio-tcp"
# When releasing to crates.io:
# - Update html_root_url.
# - Update doc url
# - Cargo.toml
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
version = "0.1.2"
version = "0.1.3"
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
documentation = "https://docs.rs/tokio-tcp/0.1.2/tokio_tcp"
documentation = "https://docs.rs/tokio-tcp/0.1.3/tokio_tcp"
description = """
TCP bindings for tokio.
"""
Expand Down
2 changes: 1 addition & 1 deletion tokio-tcp/LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2018 Tokio Contributors
Copyright (c) 2019 Tokio Contributors

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
Expand Down
2 changes: 1 addition & 1 deletion tokio-tcp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

TCP bindings for `tokio`.

[Documentation](https://tokio-rs.github.io/tokio/tokio_tcp/)
[Documentation](https://docs.rs/tokio-tcp/0.1.3/tokio_tcp)

## License

Expand Down
2 changes: 1 addition & 1 deletion tokio-tcp/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)]

//! TCP bindings for `tokio`.
Expand Down
8 changes: 8 additions & 0 deletions tokio-threadpool/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 0.1.10 (January 6, 2019)

* Fix deadlock bug in `blocking` (#795).
* Introduce global task queue (#798).
* Use crossbeam's Parker / Unparker (#529).
* Panic if worker thread cannot be spawned (#826).
* Improve `blocking` API documentation (#789).

# 0.1.9 (November 21, 2018)

* Bump internal dependency versions (#746, #753).
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.9"
documentation = "https://docs.rs/tokio-threadpool/0.1.9/tokio_threadpool"
version = "0.1.10"
documentation = "https://docs.rs/tokio-threadpool/0.1.10/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/LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2018 Tokio Contributors
Copyright (c) 2019 Tokio Contributors

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
Expand Down
2 changes: 2 additions & 0 deletions tokio-threadpool/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
A library for scheduling execution of futures concurrently across a pool of
threads.

[Documentation](https://docs.rs/tokio-threadpool/0.1.10/tokio_threadpool)

### Why not Rayon?

Rayon is designed to handle parallelizing single computations by breaking them
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.9")]
#![doc(html_root_url = "https://docs.rs/tokio-threadpool/0.1.10")]
#![deny(warnings, missing_docs, missing_debug_implementations)]

//! A work-stealing based thread pool for executing futures.
Expand Down
2 changes: 1 addition & 1 deletion tokio-timer/LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2018 Tokio Contributors
Copyright (c) 2019 Tokio Contributors

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
Expand Down
Loading

0 comments on commit 961aae4

Please sign in to comment.