mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-31 00:00:07 +02:00
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:
@@ -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).
|
||||
|
||||
@@ -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,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`.
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
#![allow(deprecated, unused_must_use)]
|
||||
|
||||
extern crate futures;
|
||||
extern crate tokio_codec;
|
||||
extern crate tokio_udp;
|
||||
|
||||
Reference in New Issue
Block a user