-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e4f19c1
commit 87db3fb
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Changelog | ||
|
||
## Unreleased | ||
|
||
## [v0.4.0][] (2024-06-20) | ||
|
||
- Update `heapless` to version `0.8` ([#3][]) | ||
- Remove the `Deref` implementation to `heapless` and implement `Deref<Target = [u8]>` directly ([#8][]) | ||
- Add conversions between `[u8; N]` and `heapless::Vec<u8, N>`. 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.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 | ||
|
||
|