From 846ec2c9632da54fe87d1b5756e4aba136735b33 Mon Sep 17 00:00:00 2001 From: Roland Fredenhagen Date: Fri, 13 Mar 2026 16:45:57 +0100 Subject: [PATCH 1/2] chore: Release --- CHANGELOG.md | 7 ++++++- Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e17442..1d91c15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.6.1] - 2026-03-13 +### Fixed +- Stop breaking compilation when Clone + Copy or PartialEq + Eq where used with automatic bounds ([#137](https://github.com/ModProg/derive-where/pull/137) by [spirali](https://github.com/spirali)). + ## [1.6.0] - 2025-08-06 ### Changed @@ -147,7 +151,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial release. -[unreleased]: https://github.com/ModProg/derive-where/compare/v1.6.0...HEAD +[unreleased]: https://github.com/ModProg/derive-where/compare/v1.6.1...HEAD +[1.6.1]: https://github.com/ModProg/derive-where/compare/v1.6.0...v1.6.1 [1.6.0]: https://github.com/ModProg/derive-where/compare/v1.5.0...v1.6.0 [1.5.0]: https://github.com/ModProg/derive-where/compare/v1.4.0...v1.5.0 [1.4.0]: https://github.com/ModProg/derive-where/compare/v1.3.0...v1.4.0 diff --git a/Cargo.toml b/Cargo.toml index 0504468..8fa7fe8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ name = "derive-where" readme = "README.md" repository = "https://github.com/ModProg/derive-where" rust-version = "1.57" -version = "1.6.0" +version = "1.6.1" [lib] proc-macro = true From 74c3db91638c999a93661d22685b9841ca091c0c Mon Sep 17 00:00:00 2001 From: Roland Fredenhagen Date: Fri, 13 Mar 2026 17:25:34 +0100 Subject: [PATCH 2/2] Update CHANGELOG.md Co-authored-by: daxpedda --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d91c15..98ec49b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,8 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [1.6.1] - 2026-03-13 + ### Fixed -- Stop breaking compilation when Clone + Copy or PartialEq + Eq where used with automatic bounds ([#137](https://github.com/ModProg/derive-where/pull/137) by [spirali](https://github.com/spirali)). +- Fix compilation when `Clone + Copy` or `PartialEq + Eq` where used with automatic bounds ([#137](https://github.com/ModProg/derive-where/pull/137) by [spirali](https://github.com/spirali)). ## [1.6.0] - 2025-08-06