Sfoglia il codice sorgente

CI: Bump minimum supported Rust version to 1.27.2

Johannes Hofmann 6 anni fa
parent
commit
592663c8d7
2 ha cambiato i file con 3 aggiunte e 3 eliminazioni
  1. 1
    1
      .appveyor.yml
  2. 2
    2
      .travis.yml

+ 1
- 1
.appveyor.yml Vedi File

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

+ 2
- 2
.travis.yml Vedi File

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