From 171d5e01bdf58af2f2d59a32cd6a35501ab8d023 Mon Sep 17 00:00:00 2001 From: "Joshua A. Anderson" Date: Tue, 7 Jan 2025 15:10:18 -0500 Subject: [PATCH] Test with Rust 1.84.0 Also set the minimum supported Rust to 1.81.0. --- .github/workflows/release.yaml | 2 +- .github/workflows/test.yaml | 8 ++++---- Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1617cb0..5b60f19 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -26,7 +26,7 @@ env: name: row CARGO_TERM_COLOR: always CLICOLOR: 1 - RUST_VERSION: 1.83.0 + RUST_VERSION: 1.84.0 jobs: source: diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 6ae3350..c6484b3 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -20,7 +20,7 @@ env: CARGO_TERM_COLOR: always ROW_COLOR: always CLICOLOR: 1 - RUST_LATEST_VERSION: 1.83.0 + RUST_LATEST_VERSION: 1.84.0 jobs: unit_test: @@ -33,15 +33,15 @@ jobs: - macos-14 rust: # Oldest supported version of rust - - 1.77.2 - - 1.83.0 + - 1.81.0 + - 1.84.0 mode: - debug include: # Add a release build on linux with the latest version of rust - os: ubuntu-22.04 - rust: 1.83.0 + rust: 1.84.0 mode: release steps: diff --git a/Cargo.toml b/Cargo.toml index 5c41bfa..36bf609 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "row" version = "0.4.0" edition = "2021" -rust-version = "1.77" +rust-version = "1.81" description = "Row is a command line tool that helps you manage workflows on HPC resources." homepage = "https://glotzerlab.engin.umich.edu" documentation = "https://row.readthedocs.io"