From 40859ee908d4248d103abba408bf77d6002df8b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sosth=C3=A8ne=20Gu=C3=A9don?= Date: Wed, 20 Aug 2025 11:37:35 +0200 Subject: [PATCH] Update changelog for release 0.5.0 --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c795a1d..78406c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## [v0.5.0][] (2025-08-21) + +- Update `heapless` to version `0.9.1` ([#11][]) +- Add support for heapless's `View` types ([#11][]) + ## [v0.4.0][] (2024-06-20) - Update `heapless` to version `0.8` ([#3][]) @@ -9,9 +14,11 @@ - Add conversions between `[u8; N]` and `heapless::Vec`. The `heapless` conversions are behind the `heapless-0.8` feature flag so that `heapless` can be bumped without a semver-breaking change in the future ([#6][] and [#8][]) - Add `Bytes::increase_capacity` ([#6][]) +[v0.5.0]: https://github.com/trussed-dev/heapless-bytes/releases/tag/0.5.0 [v0.4.0]: https://github.com/trussed-dev/heapless-bytes/releases/tag/0.4.0 [#3]: https://github.com/trussed-dev/heapless-bytes/pull/3 [#6]: https://github.com/trussed-dev/heapless-bytes/pull/6 [#8]: https://github.com/trussed-dev/heapless-bytes/pull/8 +[#11]: https://github.com/trussed-dev/heapless-bytes/pull/11