From c226c5ea0f6436b9c9776fca2ebf51ecdfa42759 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 28 Aug 2023 17:00:29 +0200 Subject: [PATCH] changelog --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 20063d5..59d086a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## Changed - The `Tlv` and `Lv` API return `&[u8]` instead of `Option<&[u8]>`. +- `ByteConversionError` error variants `ToSliceTooSmall` and `FromSliceTooSmall` are struct + variants now. `SizeMissmatch` was removed appropriately. ## Added @@ -19,6 +21,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Added `MsgToUserTlv` helper class which wraps a regular `Tlv` and adds some useful functionality. - `UnsignedByteField` and `GenericUnsignedByteField` `new` methods are `const` now. +## Removed + +- `SizeMissmatch` because it is not required for the `ByteConversionError` error enumeration + anymore. + # [v0.7.0-beta.0] 2023-08-16 - Moved MSRV from v1.60 to v1.61.