Skip to content

Commit 1210210

Browse files
committed
Upgrade minimum reqiured version of Rust to 1.29
This upgrades the minimum required version of Rust to 1.29 in order to fix BurntSushi#916 (Zombie processes cause `rg --files` to hang in `/proc`). See also: - Rust compiler bug ticket: rust-lang/rust#50619 - Rust compiler PR with the fix: rust-lang/rust#50630 closes BurntSushi#916
1 parent f72c2df commit 1210210

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@ matrix:
6262
# Minimum Rust supported channel. We enable these to make sure ripgrep
6363
# continues to work on the advertised minimum Rust version.
6464
- os: linux
65-
rust: 1.28.0
65+
rust: 1.29.0
6666
env: TARGET=x86_64-unknown-linux-gnu
6767
- os: linux
68-
rust: 1.28.0
68+
rust: 1.29.0
6969
env: TARGET=x86_64-unknown-linux-musl
7070
- os: linux
71-
rust: 1.28.0
71+
rust: 1.29.0
7272
env: TARGET=arm-unknown-linux-gnueabihf GCC_VERSION=4.8
7373
addons:
7474
apt:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ If you're a **NetBSD** user, then you can install ripgrep from
337337

338338
If you're a **Rust programmer**, ripgrep can be installed with `cargo`.
339339

340-
* Note that the minimum supported version of Rust for ripgrep is **1.28.0**,
340+
* Note that the minimum supported version of Rust for ripgrep is **1.29.0**,
341341
although ripgrep may work with older versions.
342342
* Note that the binary may be bigger than expected because it contains debug
343343
symbols. This is intentional. To remove debug symbols and therefore reduce
@@ -358,7 +358,7 @@ ripgrep isn't currently in any other package repositories.
358358

359359
ripgrep is written in Rust, so you'll need to grab a
360360
[Rust installation](https://www.rust-lang.org/) in order to compile it.
361-
ripgrep compiles with Rust 1.28.0 (stable) or newer. In general, ripgrep tracks
361+
ripgrep compiles with Rust 1.29.0 (stable) or newer. In general, ripgrep tracks
362362
the latest stable release of the Rust compiler.
363363

364364
To build ripgrep:

0 commit comments

Comments
 (0)