Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
Loading