mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-10-01 12:20:39 +00:00
Bump tokio-uds to v0.2.2
This commit is contained in:
parent
3a88d85538
commit
1e45237a28
@ -1,3 +1,7 @@
|
||||
# 0.2.2 (September 27, 2018)
|
||||
|
||||
* Fix bug in `UdsStream::read_buf` (#672).
|
||||
|
||||
# 0.2.1 (August 19, 2018)
|
||||
|
||||
* Re-export `ConnectFuture` (#430).
|
||||
|
@ -2,14 +2,15 @@
|
||||
name = "tokio-uds"
|
||||
# When releasing to crates.io:
|
||||
# - Update html_root_url.
|
||||
# - Update doc url
|
||||
# - Update CHANGELOG.md.
|
||||
# - Create "v0.2.x" git tag.
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
authors = ["Carl Lerche <me@carllerche.com>"]
|
||||
license = "MIT"
|
||||
repository = "https://github.com/tokio-rs/tokio"
|
||||
homepage = "https://github.com/tokio-rs/tokio"
|
||||
documentation = "https://docs.rs/tokio-uds/0.2.1/tokio_uds/"
|
||||
documentation = "https://docs.rs/tokio-uds/0.2.2/tokio_uds/"
|
||||
description = """
|
||||
Unix Domain sockets for Tokio
|
||||
"""
|
||||
|
@ -3,7 +3,7 @@
|
||||
//! This crate provides APIs for using Unix Domain Sockets with Tokio.
|
||||
|
||||
#![cfg(unix)]
|
||||
#![doc(html_root_url = "https://docs.rs/tokio-uds/0.2.1")]
|
||||
#![doc(html_root_url = "https://docs.rs/tokio-uds/0.2.2")]
|
||||
#![deny(missing_docs, warnings, missing_debug_implementations)]
|
||||
|
||||
extern crate bytes;
|
||||
|
Loading…
x
Reference in New Issue
Block a user