From f9d186c1abdfff5d1a1fbbc4959027303f27443b Mon Sep 17 00:00:00 2001 From: Mikkel Kjeldsen Date: Wed, 20 Sep 2023 21:55:49 +0200 Subject: [PATCH] msrv --- .github/workflows/ci.yml | 7 +++---- .gitlab-ci.yml | 2 +- Cargo.toml | 1 + 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ac98988..7b6498e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,17 +15,16 @@ jobs: strategy: matrix: build: - # MSRV, stable, and next. - - pinned + - msrv - stable - nightly # Use nightly for these because that's what release does. - win-msvc - macos include: - - build: pinned + - build: msrv os: ubuntu-22.04 - rust: 1.48.0 + rust: 1.63.0 - build: stable os: ubuntu-22.04 diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0ce6191..be74f6c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ # https://launchpad.net/rustc # https://packages.debian.org/stable/rustc # https://software.opensuse.org/package/rust -image: rust:1.48.0-buster +image: rust:1.63.0-slim-bullseye # should actually be bookworm rustfmt: script: diff --git a/Cargo.toml b/Cargo.toml index e2c6d43..44d97ab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,6 +9,7 @@ repository = "https://gitlab.com/mkjeldsen/commitmsgfmt" readme = "README.md" license = "Apache-2.0" edition = "2018" +rust-version = "1.63.0" [dependencies] unicode-segmentation = "1.10.1"