From 57ba3a7fbcc20c4a7c5211df129cf5877b0a2b19 Mon Sep 17 00:00:00 2001 From: Lucio Franco Date: Fri, 30 Aug 2019 17:51:48 -0400 Subject: [PATCH] udp: Prep release v0.1.5 (#1519) Signed-off-by: Lucio Franco --- tokio-udp/CHANGELOG.md | 7 ++++++- tokio-udp/Cargo.toml | 4 ++-- tokio-udp/README.md | 2 +- tokio-udp/src/lib.rs | 2 +- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/tokio-udp/CHANGELOG.md b/tokio-udp/CHANGELOG.md index 98383387c..b0f8a3920 100644 --- a/tokio-udp/CHANGELOG.md +++ b/tokio-udp/CHANGELOG.md @@ -1,10 +1,15 @@ +# 0.1.5 (August 30, 2019) + +* Allow `UdpFramed::new` to revert to previous behavior for decoding frames (#1517) +* Fix `UdpFramed` decoding to repeatedly call `Decoder::decode_eof (#1517) + # 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). +* Add `RecvDgram::into_parts` (#710) # 0.1.2 (August 23, 2018) diff --git a/tokio-udp/Cargo.toml b/tokio-udp/Cargo.toml index 03eba204f..a64d4ecfd 100644 --- a/tokio-udp/Cargo.toml +++ b/tokio-udp/Cargo.toml @@ -8,10 +8,10 @@ name = "tokio-udp" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.4" +version = "0.1.5" authors = ["Carl Lerche "] license = "MIT" -documentation = "https://docs.rs/tokio-udp/0.1.4/tokio_udp" +documentation = "https://docs.rs/tokio-udp/0.1.5/tokio_udp" repository = "https://github.com/tokio-rs/tokio" homepage = "https://tokio.rs" description = """ diff --git a/tokio-udp/README.md b/tokio-udp/README.md index 02ea251f7..c3ca55eca 100644 --- a/tokio-udp/README.md +++ b/tokio-udp/README.md @@ -2,7 +2,7 @@ UDP bindings for `tokio`. -[Documentation](https://docs.rs/tokio-udp/0.1.3/tokio_udp/) +[Documentation](https://docs.rs/tokio-udp/0.1.5/tokio_udp/) ## License diff --git a/tokio-udp/src/lib.rs b/tokio-udp/src/lib.rs index 40d246ec4..e56bf9566 100644 --- a/tokio-udp/src/lib.rs +++ b/tokio-udp/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tokio-tcp/0.1.4")] +#![doc(html_root_url = "https://docs.rs/tokio-tcp/0.1.5")] #![deny(missing_docs, warnings, missing_debug_implementations)] //! UDP bindings for `tokio`.