From 09d32a1574dc60a41e482d3ad695534576bf9263 Mon Sep 17 00:00:00 2001 From: Lokathor Date: Tue, 12 Mar 2024 23:15:07 -0600 Subject: [PATCH] move the changes to the correct changelog. --- changelog.md | 17 +++++++++++++++++ derive/changelog.md | 17 ----------------- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/changelog.md b/changelog.md index aa0e379..67164a9 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,22 @@ # `bytemuck` changelog +## 1.15.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.14.3 * The new std simd nightly features are apparently arch-specific. diff --git a/derive/changelog.md b/derive/changelog.md index a0ec55b..1e9d990 100644 --- a/derive/changelog.md +++ b/derive/changelog.md @@ -1,23 +1,6 @@ ## `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.