Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Lokathor committed Aug 14, 2022
1 parent fd6b212 commit 995205d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
@@ -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"
Expand All @@ -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.
Expand Down
12 changes: 12 additions & 0 deletions changelog.md
@@ -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`
Expand Down

0 comments on commit 995205d

Please sign in to comment.