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
41 changes: 41 additions & 0 deletions .github/workflows/periodic.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Periodic tests
on:
push:
pull_request:
schedule:
- cron: '0 0 * * SUN'

jobs:
test:
name: Test
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v6

- name: Install toolchain
uses: dtolnay/rust-toolchain@nightly

- name: Use latest dependencies
run: cargo generate-lockfile --ignore-rust-version

- name: Test impl-tools-lib
run: cargo test --manifest-path lib/Cargo.toml --lib --tests

- name: Test impl-tools
run: cargo test --features nightly-diagnostics --lib --tests

- name: Test test-cfg
working-directory: tests/test-cfg
run: |
cargo test
cargo test --features feature1

cargo-deny:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: EmbarkStudios/cargo-deny-action@v2
with:
rust-version: "1.85.0"
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ jobs:
- name: Checkout
uses: actions/checkout@v6

- name: Not MSRV
if: ${{ matrix.variant == 'MSRV' }}
run: cargo generate-lockfile --ignore-rust-version

- name: Install toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}

- name: Not MSRV
if: ${{ matrix.variant == 'MSRV' }}
run: cargo generate-lockfile --ignore-rust-version

- name: Build docs
if: ${{ matrix.variant == 'docs' }}
run: cargo doc ${{ matrix.features }} --all --no-deps
Expand Down
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,14 @@
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.11.4] — unreleased
# [0.12.0] — 2026-06-10

- Add cargo-deny check (#67)
- Bump MSRV to 1.85.0 and Edition to 2024 (#66)
- Switch from `proc-macro-error2` to `proc-macro-error3` since the former is now unmaintained (#66)
- Add `#[split_impl]` attribute (#63, #64)

# [0.11.4] — 2025-09-29

- Bump MSRV to 1.70 (#59)
- Add feature `nightly-diagnostics` (#60)
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 = "2024"

[package]
name = "impl-tools"
version = "0.11.4"
version = "0.12.0"
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.4"
version = "0.12.0"
path = "lib"

[dev-dependencies]
Expand Down
6 changes: 6 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[licenses]
allow = [
"MIT",
"Apache-2.0",
"Unicode-3.0",
]
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.4"
version = "0.12.0"
description = "Helper macros: autoimpl"
keywords = ["derive", "trait"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion tests/test-cfg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ publish = false
feature1 = []

[dependencies]
impl-tools = { version = "0.11", path = "../.." }
impl-tools = { version = "0.12", path = "../.." }
Loading