From 8d6831caf59c9517ed6fcec4c339d01601fc1c48 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 22 Jan 2024 08:43:53 +0100 Subject: [PATCH] Update MSRV to 1.70.0 Signed-off-by: Matthias Beyer --- .github/workflows/ci.yml | 6 +++--- README.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 95368fd2..2c153532 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: rust: - - 1.65.0 + - 1.70.0 - stable - beta steps: @@ -40,7 +40,7 @@ jobs: strategy: matrix: rust: - - 1.65.0 + - 1.70.0 - stable - beta # - nightly @@ -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 diff --git a/README.md b/README.md index 0bac2320..676dda20 100644 --- a/README.md +++ b/README.md @@ -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