From 069d4585a3d76dfafafc71e038c5721ee9c06a61 Mon Sep 17 00:00:00 2001 From: Lokathor Date: Tue, 12 Mar 2024 23:11:27 -0600 Subject: [PATCH] changelog --- derive/changelog.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/derive/changelog.md b/derive/changelog.md index 1e9d990..a0ec55b 100644 --- a/derive/changelog.md +++ b/derive/changelog.md @@ -1,6 +1,23 @@ ## `bytemuck_derive` changelog +## 1.7.0 + +This primarily relaxes the bounds on a `From` impl. + +Previously: + +> `impl From> for BoxBytes` + +Now: + +> `impl From> for BoxBytes` + +All related functions and methods are similarly updated. + +We believe this to be backwards compatible with all previous uses, +and now `BoxBytes` can be converted to/from more types than before. + ## 1.6.0 * This allows `CheckedBitPattern` to be derived for enums with fields.