From 919c69cc4e7c472ddd951a0aa5e64618ad8f60f9 Mon Sep 17 00:00:00 2001 From: Lokathor Date: Sat, 2 Jul 2022 15:46:07 -0600 Subject: [PATCH] changelog --- changelog.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/changelog.md b/changelog.md index 7957e39..609a262 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,13 @@ # `bytemuck` changelog +## 1.10 + +* [TheEdward162](https://github.com/TheEdward162) added the `ZeroableInOption` + and `PodInOption` traits. These are for types that are `Zeroable` or `Pod` + *when in an option*, but not on their own. We provide impls for the various + "NonZeroINTEGER" types in `core`, and if you need to newtype a NonZero value + then you can impl these traits when you use `repr(transparent)`. + ## 1.9.1 * Bumped the minimum `bytemuck_derive` dependency version from `1.0` to `1.1`.