Prep tokio-udp 0.1.4 release (#1503)

* Fix warnings in udp tests

* Prep tokio-udp 0.1.4 release
This commit is contained in:
Lucio Franco
2019-08-28 12:16:40 -04:00
committed by GitHub
parent 11a1ce2721
commit 7b39388415
4 changed files with 9 additions and 3 deletions
+4
View File
@@ -1,3 +1,7 @@
# 0.1.4 (August 28, 2019)
* Fix `UdpFramed`'s ability to decode multiple frames in one datagram (#1444)
# 0.1.3 (November 21, 2018)
* Add `RecvDgram::into_parts` (#710).
+2 -2
View File
@@ -8,10 +8,10 @@ name = "tokio-udp"
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
version = "0.1.3"
version = "0.1.4"
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
documentation = "https://docs.rs/tokio-udp/0.1.3/tokio_udp"
documentation = "https://docs.rs/tokio-udp/0.1.4/tokio_udp"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
description = """
+1 -1
View File
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tokio-tcp/0.1.3")]
#![doc(html_root_url = "https://docs.rs/tokio-tcp/0.1.4")]
#![deny(missing_docs, warnings, missing_debug_implementations)]
//! UDP bindings for `tokio`.
+2
View File
@@ -1,3 +1,5 @@
#![allow(deprecated, unused_must_use)]
extern crate futures;
extern crate tokio_codec;
extern crate tokio_udp;