From d15b8e0e6d2bdb41ab1f465dc59b7b5ec5069887 Mon Sep 17 00:00:00 2001 From: Lokathor Date: Tue, 28 May 2024 12:30:53 -0600 Subject: [PATCH] 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 --- derive/Cargo.toml | 2 +- derive/changelog.md | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 619f11d..f27ed73 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "bytemuck_derive" description = "derive proc-macros for `bytemuck`" -version = "1.6.1" +version = "1.7.0" authors = ["Lokathor "] repository = "https://github.com/Lokathor/bytemuck" readme = "README.md" diff --git a/derive/changelog.md b/derive/changelog.md index 1e9d990..5f4389e 100644 --- a/derive/changelog.md +++ b/derive/changelog.md @@ -1,6 +1,10 @@ ## `bytemuck_derive` changelog +## 1.7.0 + +* Allow generics in `derive(ByteEq, ByteHash)` https://github.com/Lokathor/bytemuck/pull/219 + ## 1.6.0 * This allows `CheckedBitPattern` to be derived for enums with fields.