mirror of
https://github.com/tokio-rs/bytes.git
synced 2026-08-17 00:00:14 +02:00
Bump version to v0.4.7
This commit is contained in:
@@ -1,3 +1,9 @@
|
|||||||
|
# 0.4.7 (April 27, 2018)
|
||||||
|
|
||||||
|
* Make `Buf` and `BufMut` usable as trait objects (#186).
|
||||||
|
* impl BorrowMut for BytesMut (#185).
|
||||||
|
* Improve accessor performance (#195).
|
||||||
|
|
||||||
# 0.4.6 (Janary 8, 2018)
|
# 0.4.6 (Janary 8, 2018)
|
||||||
|
|
||||||
* Implement FromIterator for Bytes/BytesMut (#148).
|
* Implement FromIterator for Bytes/BytesMut (#148).
|
||||||
|
|||||||
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
|
|
||||||
name = "bytes"
|
name = "bytes"
|
||||||
version = "0.4.6" # don't forget to update html_root_url
|
version = "0.4.7" # don't forget to update html_root_url
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
authors = ["Carl Lerche <[email protected]>"]
|
authors = ["Carl Lerche <[email protected]>"]
|
||||||
description = "Types and traits for working with bytes"
|
description = "Types and traits for working with bytes"
|
||||||
|
|||||||
+1
-1
@@ -69,7 +69,7 @@
|
|||||||
//! and `BufMut` are infallible.
|
//! and `BufMut` are infallible.
|
||||||
|
|
||||||
#![deny(warnings, missing_docs, missing_debug_implementations)]
|
#![deny(warnings, missing_docs, missing_debug_implementations)]
|
||||||
#![doc(html_root_url = "https://docs.rs/bytes/0.4.6")]
|
#![doc(html_root_url = "https://docs.rs/bytes/0.4.7")]
|
||||||
|
|
||||||
extern crate byteorder;
|
extern crate byteorder;
|
||||||
extern crate iovec;
|
extern crate iovec;
|
||||||
|
|||||||
Reference in New Issue
Block a user