Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Lokathor committed Mar 13, 2024
1 parent a888e5f commit 069d458
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions derive/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@

## `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.
Expand Down

0 comments on commit 069d458

Please sign in to comment.