summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsharkdp <davidpeter@web.de>2020-04-24 00:46:57 +0200
committerDavid Peter <sharkdp@users.noreply.github.com>2020-04-24 09:57:57 +0200
commitabeac8b12e9e4c0bc6d9c03ce0d12751a81e9757 (patch)
tree33cceed2cfb6de02044c7785fbeb50c6be57b8e0
parent82e7786e747b1fcfac1f963ae6415a22ec9caae1 (diff)
Bump min. required Rust version to 1.40
-rw-r--r--.travis.yml6
-rw-r--r--README.md2
2 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 22d66175..866ad71f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -32,15 +32,15 @@ matrix:
# Minimum Rust supported channel.
- os: linux
- rust: 1.37.0
+ rust: 1.40.0
env: TARGET=x86_64-unknown-linux-gnu
- os: linux
- rust: 1.37.0
+ rust: 1.40.0
env:
- TARGET=x86_64-unknown-linux-musl
- CC_x86_64_unknown_linux_musl=/usr/bin/musl-gcc
- os: osx
- rust: 1.37.0
+ rust: 1.40.0
env: TARGET=x86_64-apple-darwin
# Disable nightly for now
diff --git a/README.md b/README.md
index cb2162e1..10043b7c 100644
--- a/README.md
+++ b/README.md
@@ -348,7 +348,7 @@ binaries are also available: look for archives with `musl` in the file name.
### From source
-If you want to build `bat` from source, you need Rust 1.37 or
+If you want to build `bat` from source, you need Rust 1.40 or
higher. You can then use `cargo` to build everything:
```bash