mirror of
https://github.com/Lokathor/bytemuck.git
synced 2024-11-21 14:22:26 +00:00
move the changes to the correct changelog.
This commit is contained in:
parent
069d4585a3
commit
09d32a1574
17
changelog.md
17
changelog.md
@ -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.
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user