version bump

This commit is contained in:
Lokathor 2022-08-14 10:10:45 -06:00
parent fd6b212a35
commit 995205de23
2 changed files with 14 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.11.0"
version = "1.12.0"
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.1", path = "derive", optional = true }
bytemuck_derive = { version = "1.2", 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,17 @@
# `bytemuck` changelog
## 1.12
* This minor version bump is caused by a version bump in our `bytemuck_derive`
dependency, which is in turn caused by a mixup in the minimum version of `syn`
that `bytemuck_derive` uses. See [Issue
122](https://github.com/Lokathor/bytemuck/issues/122). There's not any
specific "new" API as you might normally expect from a minor version bump.
* [pali](https://github.com/pali6) fixed a problem with SPIR-V builds being
broken. The error handling functions were trying to be generic over `Display`,
which the error types normally support, except on SPIR-V targets (which run on
the GPU and don't have text formatting).
## 1.11
* [WaffleLapkin](https://github.com/WaffleLapkin) added `wrap_box` and `peel_box`