Browse Source

CI: Bump minimum supported Rust version to 1.27.2

Johannes Hofmann 6 years ago
parent
commit
592663c8d7
2 changed files with 3 additions and 3 deletions
  1. 1
    1
      .appveyor.yml
  2. 2
    2
      .travis.yml

+ 1
- 1
.appveyor.yml View File

21
     - channel: stable
21
     - channel: stable
22
       target: i686-pc-windows-msvc
22
       target: i686-pc-windows-msvc
23
       cargoflags: --no-default-features
23
       cargoflags: --no-default-features
24
-    - channel: 1.26.2
24
+    - channel: 1.27.2
25
       target: x86_64-pc-windows-msvc
25
       target: x86_64-pc-windows-msvc
26
 
26
 
27
 install:
27
 install:

+ 2
- 2
.travis.yml View File

6
   - stable
6
   - stable
7
   - beta
7
   - beta
8
   - nightly
8
   - nightly
9
-  - 1.26.2
9
+  - 1.27.2
10
 script:
10
 script:
11
   - |
11
   - |
12
-      if [ "$TRAVIS_RUST_VERSION" == "1.26.2" ]; then
12
+      if [ "$TRAVIS_RUST_VERSION" == "1.27.2" ]; then
13
         cargo test --verbose;
13
         cargo test --verbose;
14
         cargo doc --verbose --no-deps;
14
         cargo doc --verbose --no-deps;
15
       else
15
       else