mirror of
https://github.com/tokio-rs/bytes.git
synced 2026-08-28 00:00:17 +02:00
Bump version to v0.4.10 (#227)
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
# 0.4.10 (September 4, 2018)
|
||||||
|
|
||||||
|
* impl `Buf` and `BufMut` for `Either` (#225).
|
||||||
|
* Add `Bytes::slice_ref` (#208).
|
||||||
|
|
||||||
# 0.4.9 (July 12, 2018)
|
# 0.4.9 (July 12, 2018)
|
||||||
|
|
||||||
* Add 128 bit number support behind a feature flag (#209).
|
* Add 128 bit number support behind a feature flag (#209).
|
||||||
|
|||||||
+7
-2
@@ -1,11 +1,16 @@
|
|||||||
[package]
|
[package]
|
||||||
|
|
||||||
name = "bytes"
|
name = "bytes"
|
||||||
version = "0.4.9" # don't forget to update html_root_url
|
# When releasing to crates.io:
|
||||||
|
# - Update html_root_url.
|
||||||
|
# - Update CHANGELOG.md.
|
||||||
|
# - Update doc URL.
|
||||||
|
# - Create "v0.4.x" git tag.
|
||||||
|
version = "0.4.10"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
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"
|
||||||
documentation = "https://carllerche.github.io/bytes/bytes"
|
documentation = "https://docs.rs/bytes/0.4.10/bytes"
|
||||||
homepage = "https://github.com/carllerche/bytes"
|
homepage = "https://github.com/carllerche/bytes"
|
||||||
repository = "https://github.com/carllerche/bytes"
|
repository = "https://github.com/carllerche/bytes"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|||||||
+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.9")]
|
#![doc(html_root_url = "https://docs.rs/bytes/0.4.10")]
|
||||||
|
|
||||||
extern crate byteorder;
|
extern crate byteorder;
|
||||||
extern crate iovec;
|
extern crate iovec;
|
||||||
|
|||||||
Reference in New Issue
Block a user