aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Sean Lynch <phantom@lynches.ca> 2022-11-20 23:06:49 -0800
committerGravatar GitHub <noreply@github.com> 2022-11-21 08:06:49 +0100
commit9b227220dfeb5d176b807c9bf27e1ee438935f78 (patch)
treec46fcabd2e85068b7b55af216735f0c979a3d8c0
parent8a8c41f5c215e03d94ab9b38a88f5991b4cf24ab (diff)
downloadbytes-9b227220dfeb5d176b807c9bf27e1ee438935f78.tar.gz
bytes-9b227220dfeb5d176b807c9bf27e1ee438935f78.tar.zst
bytes-9b227220dfeb5d176b807c9bf27e1ee438935f78.zip
chore: prepare bytes v1.3.0 (#579)v1.3.0
-rw-r--r--CHANGELOG.md15
-rw-r--r--Cargo.toml2
2 files changed, 16 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 401014d..760c210 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,18 @@
+# 1.3.0 (November 20, 2022)
+
+### Added
+
+- Rename and expose `BytesMut::spare_capacity_mut` (#572)
+- Implement native-endian get and put functions for `Buf` and `BufMut` (#576)
+
+### Fixed
+
+- Don't have important data in unused capacity when calling reserve (#563)
+
+### Documented
+
+- `Bytes::new` etc should return `Self` not `Bytes` (#568)
+
# 1.2.1 (July 30, 2022)
### Fixed
diff --git a/Cargo.toml b/Cargo.toml
index bd6ebfd..9efd8a1 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,7 +4,7 @@ name = "bytes"
# When releasing to crates.io:
# - Update CHANGELOG.md.
# - Create "v1.x.y" git tag.
-version = "1.2.1"
+version = "1.3.0"
license = "MIT"
authors = [
"Carl Lerche <me@carllerche.com>",