Skip to content

Commit c1cc209

Browse files
authored
Merge pull request #42 from kas-gui/work
MSRV=1.61; prepare release 0.10.1
2 parents 3d1cc86 + 82b41e3 commit c1cc209

5 files changed

Lines changed: 12 additions & 5 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
steps:
5555
- uses: actions/checkout@v4
5656
- name: Install toolchain
57-
uses: dtolnay/rust-toolchain@1.58.1
57+
uses: dtolnay/rust-toolchain@1.61.0
5858
- name: Test impl-tools-lib
5959
run: cargo test --manifest-path lib/Cargo.toml --all-features --lib --tests
6060
- name: Test impl-tools

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
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.10.1] — 2024-10-21
6+
7+
- Improve CI workflows (#38)
8+
- Explicit MSRV = 1.58 (#38)
9+
- Replace dependency `proc-macro-error` with `proc-macro-error2` (#41)
10+
- Bump MSRV to 1.61 (#42)
11+
512
## [0.10.0] — 2023-09-07
613

714
- Rename `singleton!``impl_anon!` (#36)

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ categories = ["development-tools::procedural-macro-helpers"]
1010
repository = "https://github.com/kas-gui/impl-tools"
1111
readme = "README.md"
1212
documentation = "https://docs.rs/impl-tools/"
13-
rust-version = "1.58.0"
13+
rust-version = "1.61.0"
1414

1515
[lib]
1616
proc-macro = true

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Impl-tools
44
[![Test Status](https://github.com/kas-gui/impl-tools/workflows/Tests/badge.svg?event=push)](https://github.com/kas-gui/impl-tools/actions)
55
[![Latest version](https://img.shields.io/crates/v/impl-tools.svg)](https://crates.io/crates/impl-tools)
66
[![API](https://docs.rs/impl-tools/badge.svg)](https://docs.rs/impl-tools)
7-
[![Minimum rustc version](https://img.shields.io/badge/rustc-1.58+-lightgray.svg)](https://github.com/kas-gui/impl-tools#supported-rust-versions)
7+
[![Minimum rustc version](https://img.shields.io/badge/rustc-1.61+-lightgray.svg)](https://github.com/kas-gui/impl-tools#supported-rust-versions)
88

99
A set of helper macros
1010

@@ -204,7 +204,7 @@ For an example of this approach, see [kas-macros](https://github.com/kas-gui/kas
204204
Supported Rust Versions
205205
------------------------------
206206

207-
The MSRV is 1.58.0.
207+
The MSRV is 1.61.0.
208208

209209
When using a sufficiently recent compiler version (presumably 1.65.0), generic associated types
210210
are supported (only applicable to `#[autoimpl]` on trait definitions using GATs).

lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["derive", "trait"]
99
repository = "https://github.com/kas-gui/impl-tools"
1010
readme = "README.md"
1111
documentation = "https://docs.rs/impl-tools-lib/"
12-
rust-version = "1.58.0"
12+
rust-version = "1.61.0"
1313

1414
[dependencies]
1515
quote = "1.0"

0 commit comments

Comments
 (0)