Skip to content

Commit

Permalink
move the changes to the correct changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lokathor committed Mar 13, 2024
1 parent 069d458 commit 09d32a1
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
17 changes: 17 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
17 changes: 0 additions & 17 deletions derive/changelog.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit 09d32a1

Please sign in to comment.