stupid branch stuff. (#248)

* Change #![allow(clippy::missing_docs_in_private_items)] to #[allow(clippy::missing_docs_in_private_items)], also rustfmt went wild

* fix for 1.34 building.

* clippy be quiet

* derive changelog.

* chore: Release bytemuck_derive version 1.7.0
This commit is contained in:
Lokathor 2024-05-28 12:30:53 -06:00 committed by GitHub
parent c9540064f3
commit d15b8e0e6d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

View File

@ -1,7 +1,7 @@
[package] [package]
name = "bytemuck_derive" name = "bytemuck_derive"
description = "derive proc-macros for `bytemuck`" description = "derive proc-macros for `bytemuck`"
version = "1.6.1" version = "1.7.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"

View File

@ -1,6 +1,10 @@
## `bytemuck_derive` changelog ## `bytemuck_derive` changelog
## 1.7.0
* Allow generics in `derive(ByteEq, ByteHash)` https://github.com/Lokathor/bytemuck/pull/219
## 1.6.0 ## 1.6.0
* This allows `CheckedBitPattern` to be derived for enums with fields. * This allows `CheckedBitPattern` to be derived for enums with fields.