Skip to content

Commit c29d185

Browse files
committed
Bump MSRV to 1.70, CHANGELOG, fix CI
1 parent c77fd70 commit c29d185

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- os: windows-latest
2121
toolchain: stable
2222
- os: ubuntu-latest
23-
toolchain: "1.66.0"
23+
toolchain: "1.70.0"
2424
targets: "--lib --tests"
2525
variant: MSRV
2626

@@ -62,7 +62,7 @@ jobs:
6262
- uses: dtolnay/rust-toolchain@master
6363
with:
6464
toolchain: stable
65-
components: rustfmt
65+
components: rustfmt,clippy
6666
- name: rustfmt
6767
run: cargo fmt --all -- --check
6868
- name: clippy

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
33
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
44

5+
# [0.12.0] — unreleased
6+
7+
- Bump MSRV to 1.70 (#59)
8+
- Let `#[autoimpl(Clone, Debug, Default)]` support `#[cfg]` on struct fields, enum variants and variant fields (#59)
9+
- Let `#[autoimpl(Clone, Debug)]` support `ignore` on named enum fields (#59)
10+
511
# [0.11.3] (lib only)
612

713
- Fix `#[autoimpl(Clone)]` and `#[autoimpl(Hash)]` for non-`Copy` enums (#55, #56)

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ members = ["lib", "tests/test-cfg"]
55
authors = ["Diggory Hardy <git@dhardy.name>"]
66
license = "MIT/Apache-2.0"
77
repository = "https://github.com/kas-gui/impl-tools"
8-
rust-version = "1.65.0"
8+
rust-version = "1.70.0"
99
edition = "2021"
1010

1111
[package]

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -203,12 +203,6 @@ For an example of this approach, see [kas-macros](https://github.com/kas-gui/kas
203203
[`ScopeAttr`]: https://docs.rs/impl-tools-lib/latest/impl_tools_lib/trait.ScopeAttr.html
204204

205205

206-
Supported Rust Versions
207-
------------------------------
208-
209-
The MSRV is 1.65.0.
210-
211-
212206
Alternatives
213207
------------
214208

0 commit comments

Comments
 (0)