udp: Prep release v0.1.5 (#1519)

Signed-off-by: Lucio Franco <[email protected]>
This commit is contained in:
Lucio Franco
2019-08-30 17:51:48 -04:00
committed by GitHub
parent c3c3481d74
commit 57ba3a7fbc
4 changed files with 10 additions and 5 deletions
+6 -1
View File
@@ -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)
+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.4"
version = "0.1.5"
authors = ["Carl Lerche <[email protected]>"]
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 = """
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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`.