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.