move the changes to the correct changelog.

This commit is contained in:
Lokathor 2024-03-12 23:15:07 -06:00
parent 069d4585a3
commit 09d32a1574
2 changed files with 17 additions and 17 deletions

View File

@ -1,5 +1,22 @@
# `bytemuck` changelog
## 1.15.0
This primarily relaxes the bounds on a `From` impl.
Previously:
> `impl<T: NoUninit> From<Box<T>> for BoxBytes`
Now:
> `impl<T: ?Sized + sealed::BoxBytesOf> From<Box<T>> 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.

View File

@ -1,23 +1,6 @@
## `bytemuck_derive` changelog
## 1.7.0
This primarily relaxes the bounds on a `From` impl.
Previously:
> `impl<T: NoUninit> From<Box<T>> for BoxBytes`
Now:
> `impl<T: ?Sized + sealed::BoxBytesOf> From<Box<T>> 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.