Skip to content
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

Update MSRV to 1.70.0 #116

Closed
wants to merge 1 commit into from
Closed
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
rust:
- 1.65.0
- 1.70.0
- stable
- beta
steps:
Expand All @@ -40,7 +40,7 @@ jobs:
strategy:
matrix:
rust:
- 1.65.0
- 1.70.0
- stable
- beta
# - nightly
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.65.0
toolchain: 1.70.0
components: rustfmt
- name: cargo-fmt
run: cargo fmt -- --check
Expand All @@ -105,7 +105,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.67.0
toolchain: 1.70.0
components: clippy
- uses: swatinem/rust-cache@v2
- name: cargo-clippy
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![crates.io](https://img.shields.io/crates/v/rexpect.svg)](https://crates.io/crates/rexpect)
[![Released API docs](https://docs.rs/rexpect/badge.svg)](https://docs.rs/rexpect)
[![Master API docs](https://img.shields.io/badge/docs-master-2f343b.svg)](http://philippkeller.github.io/rexpect)
[![MSRV](https://img.shields.io/badge/MSRV-1.65.0-blue)]
[![MSRV](https://img.shields.io/badge/MSRV-1.70.0-blue)]

Spawn, control, and respond to expected patterns of child applications and
processes, enabling the automation of interactions and testing. Components
Expand Down
Loading