mirror of
https://github.com/Lokathor/bytemuck.git
synced 2024-11-25 08:12:26 +00:00
version bump
This commit is contained in:
parent
fd6b212a35
commit
995205de23
@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bytemuck"
|
name = "bytemuck"
|
||||||
description = "A crate for mucking around with piles of bytes."
|
description = "A crate for mucking around with piles of bytes."
|
||||||
version = "1.11.0"
|
version = "1.12.0"
|
||||||
authors = ["Lokathor <zefria@gmail.com>"]
|
authors = ["Lokathor <zefria@gmail.com>"]
|
||||||
repository = "https://github.com/Lokathor/bytemuck"
|
repository = "https://github.com/Lokathor/bytemuck"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
@ -28,7 +28,7 @@ unsound_ptr_pod_impl = []
|
|||||||
nightly_portable_simd = []
|
nightly_portable_simd = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bytemuck_derive = { version = "1.1", path = "derive", optional = true }
|
bytemuck_derive = { version = "1.2", path = "derive", optional = true }
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
# Note(Lokathor): Don't use all-features or it would use `unsound_ptr_pod_impl` too.
|
# Note(Lokathor): Don't use all-features or it would use `unsound_ptr_pod_impl` too.
|
||||||
|
12
changelog.md
12
changelog.md
@ -1,5 +1,17 @@
|
|||||||
# `bytemuck` changelog
|
# `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
|
## 1.11
|
||||||
|
|
||||||
* [WaffleLapkin](https://github.com/WaffleLapkin) added `wrap_box` and `peel_box`
|
* [WaffleLapkin](https://github.com/WaffleLapkin) added `wrap_box` and `peel_box`
|
||||||
|
Loading…
Reference in New Issue
Block a user