mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-31 00:00:07 +02:00
udp: Prep release v0.1.5 (#1519)
Signed-off-by: Lucio Franco <[email protected]>
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
@@ -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
@@ -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,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`.
|
||||
|
||||
Reference in New Issue
Block a user