From 19f6190f5dd866441bd5b45b2274c7b74e4538f7 Mon Sep 17 00:00:00 2001 From: patr0nus Date: Mon, 7 Nov 2022 19:13:56 +0800 Subject: [PATCH] Update changelog --- bytestring/CHANGES.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bytestring/CHANGES.md b/bytestring/CHANGES.md index 2cdf6d91..d7c4c2be 100644 --- a/bytestring/CHANGES.md +++ b/bytestring/CHANGES.md @@ -2,7 +2,9 @@ ## Unreleased - 2022-xx-xx - Minimum supported Rust version (MSRV) is now 1.57. +- Add `ByteString::slice_ref` which can safely slice a `ByteString` into a new one with zero copy. [#470] +[#470]: https://github.com/actix/actix-net/pull/470 ## 1.1.0 - 2022-06-11 - Implement `From>` for `ByteString`. [#458]