From 6bbe308879eea68e2c370698f2ba792de85d15e3 Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Wed, 7 Aug 2019 10:49:56 -0700 Subject: [PATCH] travis: exercise 1.31.1 and 1.32 1.31.1 is our intended MSRV (Minimum Supported Rust Version), but we probably don't actually work there because of an insufficiently-constrained dependency that requires 1.32. 1.32 is probably our actual MSRV, and will be the one we aim for going forward. refs #21 --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 8e99551..1a148cc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,8 @@ rust: - stable - beta - nightly + - 1.31.1 + - 1.32 matrix: include: - rust: 1.31.0 # lock down for consistent rustfmt behavior @@ -14,4 +16,5 @@ matrix: allow_failures: - rust: nightly - env: RUSTFMT + - rust: 1.31.1 script: cargo test --release --verbose --all -- 2.44.0