use the new derive updates.

This commit is contained in:
Lokathor 2022-08-16 21:03:48 -06:00
parent 3f2e91d3a6
commit 950a3ed3b9
2 changed files with 7 additions and 2 deletions

View File

@ -1,7 +1,7 @@
[package]
name = "bytemuck"
description = "A crate for mucking around with piles of bytes."
version = "1.12.0"
version = "1.12.1"
authors = ["Lokathor <zefria@gmail.com>"]
repository = "https://github.com/Lokathor/bytemuck"
readme = "README.md"
@ -28,7 +28,7 @@ unsound_ptr_pod_impl = []
nightly_portable_simd = []
[dependencies]
bytemuck_derive = { version = "1.2", path = "derive", optional = true }
bytemuck_derive = { version = "1.2.1", path = "derive", optional = true }
[package.metadata.docs.rs]
# Note(Lokathor): Don't use all-features or it would use `unsound_ptr_pod_impl` too.

View File

@ -1,5 +1,10 @@
# `bytemuck` changelog
## 1.12.1
* Patch bumped the required `bytemuck_derive` version because of a regression in
how it handled `align(N)` attributes.
## 1.12
* This minor version bump is caused by a version bump in our `bytemuck_derive`