aboutsummaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorJoel Galenson <jgalenson@google.com>2021-09-22 10:51:41 -0700
committerJoel Galenson <jgalenson@google.com>2021-09-22 10:51:41 -0700
commit12f62b94d6ccdca90dcd0edfbff82031fec3912f (patch)
tree8e48eb122f9388d510dacf7066a11e16c9b411d3 /CHANGELOG.md
parent199730d90816980d7cac4cb1dabcce07bc548a38 (diff)
downloadbytes-12f62b94d6ccdca90dcd0edfbff82031fec3912f.tar.gz
Upgrade rust/crates/bytes to 1.1.0
Test: make Change-Id: I62c795247b1a9f37ec66c3ef6b1add6b78530482
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md23
1 files changed, 22 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a53a165..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
@@ -10,7 +31,7 @@
# 1.0.0 (December 22, 2020)
### Changed
-- Rename Buf/BufMut, methods to chunk/chunk_mut (#450)
+- Rename `Buf`/`BufMut` methods `bytes()` and `bytes_mut()` to `chunk()` and `chunk_mut()` (#450)
### Removed
- remove unused Buf implementation. (#449)