aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alice Ryhl <alice@ryhl.io> 2021-08-25 17:48:41 +0200
committerGravatar GitHub <noreply@github.com> 2021-08-25 17:48:41 +0200
commitebc61e5af14cd9b436ba880cf19e849b05a04c29 (patch)
tree23b47617027b519db6d6f57c5ddf150b0cf239df
parent55e296850d3de4563ef5b260b076e6c697391604 (diff)
downloadbytes-ebc61e5af14cd9b436ba880cf19e849b05a04c29.tar.gz
bytes-ebc61e5af14cd9b436ba880cf19e849b05a04c29.tar.zst
bytes-ebc61e5af14cd9b436ba880cf19e849b05a04c29.zip
chore: prepare bytes v1.1.0 (#509)v1.1.0
-rw-r--r--CHANGELOG.md21
-rw-r--r--Cargo.toml4
2 files changed, 23 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 99975bf..636d36b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,24 @@
+# 1.1.0 (August 25, 2021)
+
+### Added
+
+- `BufMut::put_bytes(self, val, cnt)` (#487)
+- Implement `From<Box<[u8]>>` for `Bytes` (#504)
+
+### Changed
+
+- Override `put_slice` for `&mut [u8]` (#483)
+- Panic on integer overflow in `Chain::remaining` (#482)
+- Add inline tags to `UninitSlice` methods (#443)
+- Override `copy_to_bytes` for Chain and Take (#481)
+- Keep capacity when unsplit on empty other buf (#502)
+
+### Documented
+
+- Clarify `BufMut` allocation guarantees (#501)
+- Clarify `BufMut::put_int` behavior (#486)
+- Clarify actions of `clear` and `truncate`. (#508)
+
# 1.0.1 (January 11, 2021)
### Changed
diff --git a/Cargo.toml b/Cargo.toml
index 34d70f8..2b7e32b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -3,8 +3,8 @@
name = "bytes"
# When releasing to crates.io:
# - Update CHANGELOG.md.
-# - Create "v1.0.x" git tag.
-version = "1.0.1"
+# - Create "v1.x.y" git tag.
+version = "1.1.0"
license = "MIT"
authors = [
"Carl Lerche <me@carllerche.com>",