diff --git a/CHANGELOG.md b/CHANGELOG.md index c22810eb151..06eb399f86f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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). diff --git a/Cargo.toml b/Cargo.toml index 15343975a1e..a71ec5f88ef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] 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 = """ diff --git a/LICENSE b/LICENSE index 38c1e27b8e2..cdb28b4b56a 100644 --- a/LICENSE +++ b/LICENSE @@ -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 diff --git a/README.md b/README.md index 32ec4968e5a..9a2f10d11a6 100644 --- a/README.md +++ b/README.md @@ -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]. diff --git a/src/lib.rs b/src/lib.rs index 23c89ecec60..a9ee31c2132 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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, diff --git a/tokio-async-await/Cargo.toml b/tokio-async-await/Cargo.toml index 5faba6d1771..ae9528d2db9 100644 --- a/tokio-async-await/Cargo.toml +++ b/tokio-async-await/Cargo.toml @@ -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 "] license = "MIT" repository = "https://github.com/tokio-rs/tokio" @@ -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" diff --git a/tokio-async-await/LICENSE b/tokio-async-await/LICENSE index e4657ab2b6c..7181fd07573 100644 --- a/tokio-async-await/LICENSE +++ b/tokio-async-await/LICENSE @@ -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 diff --git a/tokio-async-await/src/lib.rs b/tokio-async-await/src/lib.rs index b06b5b7e9d0..dea3a0455fe 100644 --- a/tokio-async-await/src/lib.rs +++ b/tokio-async-await/src/lib.rs @@ -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))] diff --git a/tokio-buf/LICENSE b/tokio-buf/LICENSE index 38c1e27b8e2..cdb28b4b56a 100644 --- a/tokio-buf/LICENSE +++ b/tokio-buf/LICENSE @@ -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 diff --git a/tokio-channel/LICENSE b/tokio-channel/LICENSE index e0c7ffadfa4..37effb0f642 100644 --- a/tokio-channel/LICENSE +++ b/tokio-channel/LICENSE @@ -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 diff --git a/tokio-codec/LICENSE b/tokio-codec/LICENSE index 38c1e27b8e2..cdb28b4b56a 100644 --- a/tokio-codec/LICENSE +++ b/tokio-codec/LICENSE @@ -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 diff --git a/tokio-current-thread/LICENSE b/tokio-current-thread/LICENSE index 38c1e27b8e2..cdb28b4b56a 100644 --- a/tokio-current-thread/LICENSE +++ b/tokio-current-thread/LICENSE @@ -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 diff --git a/tokio-executor/CHANGELOG.md b/tokio-executor/CHANGELOG.md index 4ef02b13d39..4966481e871 100644 --- a/tokio-executor/CHANGELOG.md +++ b/tokio-executor/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.1.6 (January 6, 2019) + +* Implement `Unpark` for `Arc` (#802). +* Switch to crossbeam's Parker / Unparker (#528). + # 0.1.5 (September 26, 2018) * Implement `futures::Executor` for `DefaultExecutor` (#563). diff --git a/tokio-executor/Cargo.toml b/tokio-executor/Cargo.toml index 56ac43e6d20..320df263a92 100644 --- a/tokio-executor/Cargo.toml +++ b/tokio-executor/Cargo.toml @@ -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" diff --git a/tokio-executor/LICENSE b/tokio-executor/LICENSE index 38c1e27b8e2..cdb28b4b56a 100644 --- a/tokio-executor/LICENSE +++ b/tokio-executor/LICENSE @@ -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 diff --git a/tokio-executor/README.md b/tokio-executor/README.md index 38369425f2a..87c382b4ecf 100644 --- a/tokio-executor/README.md +++ b/tokio-executor/README.md @@ -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 diff --git a/tokio-executor/src/lib.rs b/tokio-executor/src/lib.rs index c1925ba86a7..c9a0217c3dc 100644 --- a/tokio-executor/src/lib.rs +++ b/tokio-executor/src/lib.rs @@ -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. //! diff --git a/tokio-fs/CHANGELOG.md b/tokio-fs/CHANGELOG.md index ea387ff850e..d058d5a8152 100644 --- a/tokio-fs/CHANGELOG.md +++ b/tokio-fs/CHANGELOG.md @@ -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). diff --git a/tokio-fs/Cargo.toml b/tokio-fs/Cargo.toml index 07d1c7d8d4f..0e7eaa6767a 100644 --- a/tokio-fs/Cargo.toml +++ b/tokio-fs/Cargo.toml @@ -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 "] 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. """ diff --git a/tokio-fs/LICENSE b/tokio-fs/LICENSE index 38c1e27b8e2..cdb28b4b56a 100644 --- a/tokio-fs/LICENSE +++ b/tokio-fs/LICENSE @@ -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 diff --git a/tokio-fs/README.md b/tokio-fs/README.md index f359d7676aa..6a28cbddd2b 100644 --- a/tokio-fs/README.md +++ b/tokio-fs/README.md @@ -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 diff --git a/tokio-fs/src/lib.rs b/tokio-fs/src/lib.rs index 6442cfdef03..087078fb68c 100644 --- a/tokio-fs/src/lib.rs +++ b/tokio-fs/src/lib.rs @@ -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. //! diff --git a/tokio-io/CHANGELOG.md b/tokio-io/CHANGELOG.md index 81b71cd4980..7e3ff95f0ca 100644 --- a/tokio-io/CHANGELOG.md +++ b/tokio-io/CHANGELOG.md @@ -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). diff --git a/tokio-io/Cargo.toml b/tokio-io/Cargo.toml index 5bb51d84f1b..edaa605632b 100644 --- a/tokio-io/Cargo.toml +++ b/tokio-io/Cargo.toml @@ -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 "] 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. """ diff --git a/tokio-io/LICENSE b/tokio-io/LICENSE index 38c1e27b8e2..cdb28b4b56a 100644 --- a/tokio-io/LICENSE +++ b/tokio-io/LICENSE @@ -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 diff --git a/tokio-io/README.md b/tokio-io/README.md index 324e7e6c7b7..3c0e1451c64 100644 --- a/tokio-io/README.md +++ b/tokio-io/README.md @@ -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 diff --git a/tokio-io/src/lib.rs b/tokio-io/src/lib.rs index a3c9df391bd..3d5ef788e9f 100644 --- a/tokio-io/src/lib.rs +++ b/tokio-io/src/lib.rs @@ -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. //! diff --git a/tokio-reactor/CHANGELOG.md b/tokio-reactor/CHANGELOG.md index d7d5c494129..bbe09fdf877 100644 --- a/tokio-reactor/CHANGELOG.md +++ b/tokio-reactor/CHANGELOG.md @@ -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). diff --git a/tokio-reactor/Cargo.toml b/tokio-reactor/Cargo.toml index 4753d22b558..606ecec7380 100644 --- a/tokio-reactor/Cargo.toml +++ b/tokio-reactor/Cargo.toml @@ -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 "] 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. """ diff --git a/tokio-reactor/LICENSE b/tokio-reactor/LICENSE index 38c1e27b8e2..cdb28b4b56a 100644 --- a/tokio-reactor/LICENSE +++ b/tokio-reactor/LICENSE @@ -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 diff --git a/tokio-reactor/README.md b/tokio-reactor/README.md index 0227c14e841..dc48026ce0f 100644 --- a/tokio-reactor/README.md +++ b/tokio-reactor/README.md @@ -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 diff --git a/tokio-reactor/src/lib.rs b/tokio-reactor/src/lib.rs index 249fe36f173..938ce8e475e 100644 --- a/tokio-reactor/src/lib.rs +++ b/tokio-reactor/src/lib.rs @@ -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. diff --git a/tokio-signal/LICENSE b/tokio-signal/LICENSE index 814d5843d01..df553329f50 100644 --- a/tokio-signal/LICENSE +++ b/tokio-signal/LICENSE @@ -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 diff --git a/tokio-tcp/CHANGELOG.md b/tokio-tcp/CHANGELOG.md index e54cc14e890..3e416d52795 100644 --- a/tokio-tcp/CHANGELOG.md +++ b/tokio-tcp/CHANGELOG.md @@ -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 diff --git a/tokio-tcp/Cargo.toml b/tokio-tcp/Cargo.toml index bfced9abbf7..031a90df37b 100644 --- a/tokio-tcp/Cargo.toml +++ b/tokio-tcp/Cargo.toml @@ -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 "] 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. """ diff --git a/tokio-tcp/LICENSE b/tokio-tcp/LICENSE index 38c1e27b8e2..cdb28b4b56a 100644 --- a/tokio-tcp/LICENSE +++ b/tokio-tcp/LICENSE @@ -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 diff --git a/tokio-tcp/README.md b/tokio-tcp/README.md index 9cfc177b801..b211630f9cc 100644 --- a/tokio-tcp/README.md +++ b/tokio-tcp/README.md @@ -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 diff --git a/tokio-tcp/src/lib.rs b/tokio-tcp/src/lib.rs index 192d1136a2d..e6ebdf2453c 100644 --- a/tokio-tcp/src/lib.rs +++ b/tokio-tcp/src/lib.rs @@ -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`. diff --git a/tokio-threadpool/CHANGELOG.md b/tokio-threadpool/CHANGELOG.md index 1539e628a30..78f603959d8 100644 --- a/tokio-threadpool/CHANGELOG.md +++ b/tokio-threadpool/CHANGELOG.md @@ -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). diff --git a/tokio-threadpool/Cargo.toml b/tokio-threadpool/Cargo.toml index 2c5a9c979e6..f891f7e3386 100644 --- a/tokio-threadpool/Cargo.toml +++ b/tokio-threadpool/Cargo.toml @@ -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" diff --git a/tokio-threadpool/LICENSE b/tokio-threadpool/LICENSE index 38c1e27b8e2..cdb28b4b56a 100644 --- a/tokio-threadpool/LICENSE +++ b/tokio-threadpool/LICENSE @@ -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 diff --git a/tokio-threadpool/README.md b/tokio-threadpool/README.md index 3c89b265240..894165dbbde 100644 --- a/tokio-threadpool/README.md +++ b/tokio-threadpool/README.md @@ -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 diff --git a/tokio-threadpool/src/lib.rs b/tokio-threadpool/src/lib.rs index 8f6f82d1f5a..f1a065ba16d 100644 --- a/tokio-threadpool/src/lib.rs +++ b/tokio-threadpool/src/lib.rs @@ -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. diff --git a/tokio-timer/LICENSE b/tokio-timer/LICENSE index 38c1e27b8e2..cdb28b4b56a 100644 --- a/tokio-timer/LICENSE +++ b/tokio-timer/LICENSE @@ -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 diff --git a/tokio-tls/CHANGELOG.md b/tokio-tls/CHANGELOG.md index 238f85f2ac5..60c54fc7937 100644 --- a/tokio-tls/CHANGELOG.md +++ b/tokio-tls/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.2.1 (January 6, 2019) + +* Implement `Clone` for `TlsConnector` and `TlsAcceptor` (#777) + # 0.2.0 (August 8, 2018) * Initial release with `tokio` support. diff --git a/tokio-tls/Cargo.toml b/tokio-tls/Cargo.toml index 40cc9239566..89d4c1ed3bf 100644 --- a/tokio-tls/Cargo.toml +++ b/tokio-tls/Cargo.toml @@ -4,12 +4,12 @@ name = "tokio-tls" # - Update html_root_url. # - Update CHANGELOG.md. # - Create "tokio-tls-0.2.x" git tag. -version = "0.2.0" +version = "0.2.1" authors = ["Carl Lerche "] license = "MIT" repository = "https://github.com/tokio-rs/tokio" homepage = "https://tokio.rs" -documentation = "https://docs.rs/tokio-tls" +documentation = "https://docs.rs/tokio-tls/0.2.1/tokio_tls/" description = """ An implementation of TLS/SSL streams for Tokio giving an implementation of TLS for nonblocking I/O streams. diff --git a/tokio-tls/LICENSE b/tokio-tls/LICENSE index 38c1e27b8e2..cdb28b4b56a 100644 --- a/tokio-tls/LICENSE +++ b/tokio-tls/LICENSE @@ -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 diff --git a/tokio-tls/README.md b/tokio-tls/README.md index 25cefaf52a2..c82a78ca8d2 100644 --- a/tokio-tls/README.md +++ b/tokio-tls/README.md @@ -3,7 +3,7 @@ An implementation of TLS/SSL streams for Tokio built on top of the [`native-tls` crate] -[Documentation](https://docs.rs/tokio-tls) +[Documentation](https://docs.rs/tokio-tls/0.2.1/tokio_tls/) [`native-tls` crate]: https://github.com/sfackler/rust-native-tls diff --git a/tokio-tls/src/lib.rs b/tokio-tls/src/lib.rs index d1b51144387..63275c7fed5 100644 --- a/tokio-tls/src/lib.rs +++ b/tokio-tls/src/lib.rs @@ -1,3 +1,6 @@ +#![deny(missing_docs)] +#![doc(html_root_url = "https://docs.rs/tokio-tls/0.2.1")] + //! Async TLS streams //! //! This library is an implementation of TLS streams using the most appropriate @@ -15,9 +18,6 @@ //! built. Configuration of TLS parameters is still primarily done through the //! `native-tls` crate. -#![deny(missing_docs)] -#![doc(html_root_url = "https://docs.rs/tokio-tls/0.2.0")] - extern crate futures; extern crate native_tls; #[macro_use] diff --git a/tokio-udp/LICENSE b/tokio-udp/LICENSE index 38c1e27b8e2..cdb28b4b56a 100644 --- a/tokio-udp/LICENSE +++ b/tokio-udp/LICENSE @@ -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 diff --git a/tokio-uds/CHANGELOG.md b/tokio-uds/CHANGELOG.md index 3809848c219..fcf798cad02 100644 --- a/tokio-uds/CHANGELOG.md +++ b/tokio-uds/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.2.5 (January 6, 2019) + +* Fix bug in `UnixDatagram::send` (#782). + # 0.2.4 (November 24, 2018) * Implement `UnixDatagramFramed`, providing a `Stream + Sink` layer for diff --git a/tokio-uds/Cargo.toml b/tokio-uds/Cargo.toml index 0ebd73578c7..741f97b3561 100644 --- a/tokio-uds/Cargo.toml +++ b/tokio-uds/Cargo.toml @@ -3,14 +3,16 @@ name = "tokio-uds" # When releasing to crates.io: # - Update html_root_url. # - Update doc url +# - Cargo.toml +# - README.md # - Update CHANGELOG.md. # - Create "v0.2.x" git tag. -version = "0.2.4" +version = "0.2.5" authors = ["Carl Lerche "] license = "MIT" repository = "https://github.com/tokio-rs/tokio" homepage = "https://github.com/tokio-rs/tokio" -documentation = "https://docs.rs/tokio-uds/0.2.4/tokio_uds/" +documentation = "https://docs.rs/tokio-uds/0.2.5/tokio_uds/" description = """ Unix Domain sockets for Tokio """ diff --git a/tokio-uds/LICENSE b/tokio-uds/LICENSE index 38c1e27b8e2..cdb28b4b56a 100644 --- a/tokio-uds/LICENSE +++ b/tokio-uds/LICENSE @@ -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 diff --git a/tokio-uds/README.md b/tokio-uds/README.md index 0c03efe97da..1c6a80c04e8 100644 --- a/tokio-uds/README.md +++ b/tokio-uds/README.md @@ -2,7 +2,7 @@ An implementation of Unix Domain Sockets for Tokio -[Documentation](https://docs.rs/tokio-uds) +[Documentation](https://docs.rs/tokio-uds/0.2.5/tokio_uds/) ## License diff --git a/tokio-uds/src/lib.rs b/tokio-uds/src/lib.rs index f6979472704..4c02185a8e6 100644 --- a/tokio-uds/src/lib.rs +++ b/tokio-uds/src/lib.rs @@ -1,5 +1,5 @@ #![cfg(unix)] -#![doc(html_root_url = "https://docs.rs/tokio-uds/0.2.4")] +#![doc(html_root_url = "https://docs.rs/tokio-uds/0.2.5")] #![deny(missing_docs, warnings, missing_debug_implementations)] //! Unix Domain Sockets for Tokio.