mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-15 00:00:15 +02:00
@@ -1,3 +1,9 @@
|
||||
# 0.2.1 (August 19, 2018)
|
||||
|
||||
* Re-export `ConnectFuture` (#430).
|
||||
* bug: Fix `recv_from` (#452).
|
||||
* bug: Fix build on FreeBSD.
|
||||
|
||||
# 0.2.0 (June 6, 2018)
|
||||
|
||||
* Initial 0.2 release.
|
||||
|
||||
@@ -4,12 +4,12 @@ name = "tokio-uds"
|
||||
# - Update html_root_url.
|
||||
# - Update CHANGELOG.md.
|
||||
# - Create "v0.2.x" git tag.
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
authors = ["Carl Lerche <[email protected]>"]
|
||||
license = "MIT"
|
||||
repository = "https://github.com/tokio-rs/tokio"
|
||||
homepage = "https://github.com/tokio-rs/tokio"
|
||||
documentation = "https://docs.rs/tokio-uds"
|
||||
documentation = "https://docs.rs/tokio-uds/0.2.1/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.0")]
|
||||
#![doc(html_root_url = "https://docs.rs/tokio-uds/0.2.1")]
|
||||
#![deny(missing_docs, warnings, missing_debug_implementations)]
|
||||
|
||||
extern crate bytes;
|
||||
|
||||
Reference in New Issue
Block a user