Skip to content

Bump msrv to 1.56.1 #2225

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 23, 2022
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
6 changes: 3 additions & 3 deletions .github/workflows/bindgen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
# MSRV below is documented in README.md, please update that if you
# MSRV below is documented in Cargo.toml and README.md, please update those if you
# change this.
toolchain: 1.54.0
toolchain: 1.56.1
override: true

- name: Build with msrv
run: rm Cargo.lock && cargo +1.54.0 build --lib
run: rm Cargo.lock && cargo +1.56.1 build --lib

quickchecking:
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ homepage = "https://rust-lang.github.io/rust-bindgen/"
version = "0.60.1"
edition = "2018"
build = "build.rs"
# If you change this, also update README.md and msrv in .github/workflows/bindgen.yml
rust-version = "1.56.1"

include = [
"LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ extern "C" {

## MSRV

The minimum supported Rust version is **1.54**.
The minimum supported Rust version is **1.56.1**.

No MSRV bump policy has been established yet, so MSRV may increase in any release.

Expand Down