Skip to content

Commit d912169

Browse files
authored
Merge pull request #78 from cuviper/release-1.5.0
Release 1.5.0
2 parents feb385b + 57c8793 commit d912169

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
rust: [1.0.0, 1.5.0, 1.10.0, 1.15.0, 1.20.0, 1.25.0, 1.30.0, 1.35.0,
1616
1.40.0, 1.45.0, 1.50.0, 1.55.0, 1.60.0, 1.65.0, 1.70.0, 1.75.0,
1717
1.80.0, # first version with rustc-check-cfg
18-
stable, beta, nightly]
18+
1.85.0, stable, beta, nightly]
1919
steps:
2020
- uses: actions/checkout@v4
2121
- uses: dtolnay/rust-toolchain@master
@@ -55,7 +55,7 @@ jobs:
5555
runs-on: ubuntu-latest
5656
steps:
5757
- uses: actions/checkout@v4
58-
- uses: dtolnay/rust-toolchain@1.77.0
58+
- uses: dtolnay/rust-toolchain@1.87.0
5959
with:
6060
components: rustfmt
6161
- run: cargo fmt --all --check

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "autocfg"
3-
version = "1.4.0"
3+
version = "1.5.0"
44
authors = ["Josh Stone <[email protected]>"]
55
license = "Apache-2.0 OR MIT"
66
repository = "https://github.com/cuviper/autocfg"

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ autocfg
44
[![autocfg crate](https://img.shields.io/crates/v/autocfg.svg)](https://crates.io/crates/autocfg)
55
[![autocfg documentation](https://docs.rs/autocfg/badge.svg)](https://docs.rs/autocfg)
66
![minimum rustc 1.0](https://img.shields.io/badge/rustc-1.0+-red.svg)
7-
![build status](https://github.com/cuviper/autocfg/workflows/master/badge.svg)
7+
![build status](https://github.com/cuviper/autocfg/workflows/CI/badge.svg)
88

99
A Rust library for build scripts to automatically configure code based on
1010
compiler support. Code snippets are dynamically tested to see if the `rustc`
@@ -43,6 +43,11 @@ should only be used when the compiler supports it.
4343

4444
## Release Notes
4545

46+
- 1.5.0 (2025-06-17)
47+
48+
- Add `edition` and `set_edition` to control the Rust edition used in probes.
49+
- Remove probe result files so they don't pollute the output directory.
50+
4651
- 1.4.0 (2024-09-26)
4752

4853
- Add `emit_possibility` for Rust 1.80's [checked cfgs], and call that

0 commit comments

Comments
 (0)