From 6527ad357e300e1c5df8f4b1e232964e1f5490db Mon Sep 17 00:00:00 2001 From: Diggory Hardy Date: Mon, 29 Sep 2025 08:38:45 +0100 Subject: [PATCH] Prepare 0.11.4 --- CHANGELOG.md | 4 +++- Cargo.toml | 4 ++-- lib/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c2f3a1..b5ca117 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -# [0.12.0] — unreleased +# [0.11.4] — unreleased - Bump MSRV to 1.70 (#59) +- Add feature `nightly-diagnostics` (#60) +- Warn on usage of `#[autoimpl]` for traits where a method has a `Self: Sized` bound, with opt-out feature `allow-trait-autoimpl-with-sized-fn-bound` (#60) - Let `#[autoimpl(Clone, Debug, Default)]` support `#[cfg]` on struct fields, enum variants and variant fields (#59) - Let `#[autoimpl(Clone, Debug)]` support `ignore` on named enum fields (#59) diff --git a/Cargo.toml b/Cargo.toml index 255a4d9..b40159a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" [package] name = "impl-tools" -version = "0.11.2" +version = "0.11.4" description = "Helper macros: autoimpl" keywords = ["proc-macro", "macro", "derive", "trait", "procedural"] categories = ["development-tools::procedural-macro-helpers"] @@ -39,7 +39,7 @@ default-features = false version = "2.0.0" [dependencies.impl-tools-lib] -version = "0.11.1" +version = "0.11.4" path = "lib" [dev-dependencies] diff --git a/lib/Cargo.toml b/lib/Cargo.toml index c2a0d9d..e500dae 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "impl-tools-lib" -version = "0.11.3" +version = "0.11.4" description = "Helper macros: autoimpl" keywords = ["derive", "trait"] readme = "README.md"