-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
minor fixes & set version policy to "latest stable release of Rust" #1023
Commits on Aug 22, 2018
-
ripgrep: make --no-pcre2-unicode the canonical flag
Previously, we used --pcre2-unicode as the canonical flag despite the fact that it is enabled by default, which is inconsistent with how we handle other similar flags. The reason why --pcre2-unicode was made the canonical flag was to make it easier to discover since it would be sorted near the --pcre2 flag. To solve that problem, we simply start a convention that lists related flags in the docs. Fixes #1022
Configuration menu - View commit details
-
Copy full SHA for d556aa5 - Browse repository at this point
Copy the full SHA d556aa5View commit details -
ripgrep: move minimum version to Rust stable
This also updates some code to make use of our more liberal versioning requirement, including the use of crossbeam-channel instead of the MsQueue from the older an unmaintained crossbeam 0.3. This does regrettably add a sizable number of dependencies, however, compile times seem mostly unaffected. Closes #1019
Configuration menu - View commit details
-
Copy full SHA for 22ff8be - Browse repository at this point
Copy the full SHA 22ff8beView commit details -
Configuration menu - View commit details
-
Copy full SHA for b1544c2 - Browse repository at this point
Copy the full SHA b1544c2View commit details -
ripgrep: remove workaround for std bug
This commit undoes a work-around for a bug in Rust's standard library that prevented correct file type detection on Windows in OneDrive directories. We remove the work-around because we are moving to a latest-stable Rust version policy, which has included this fix for a while now. ref #705, rust-lang/rust#46484
Configuration menu - View commit details
-
Copy full SHA for 85819c9 - Browse repository at this point
Copy the full SHA 85819c9View commit details -
tests: touch up tests on Windows
This fixes warnings and adds an additional invalid UTF-8 test that will run on Windows.
Configuration menu - View commit details
-
Copy full SHA for 2cc3d00 - Browse repository at this point
Copy the full SHA 2cc3d00View commit details -
grep-printer: fix bug in printing truncated lines
When emitting color, the printer wasn't checking whether the line exceeded the maximum allowed length.
Configuration menu - View commit details
-
Copy full SHA for f1a6967 - Browse repository at this point
Copy the full SHA f1a6967View commit details -
doc: update ripgrep's description
This now mentions PCRE2 support.
Configuration menu - View commit details
-
Copy full SHA for 14c4162 - Browse repository at this point
Copy the full SHA 14c4162View commit details -
release: better support for binary Debian package
This commit beefs up the package metadata used by the 'cargo deb' tool to produce a binary dpkg. In particular, we now include ripgrep's man page. This commit includes a new script, 'ci/build_deb.sh', which will handle the build process for a dpkg, which has become a bit more nuanced than just running 'cargo deb'. We don't (yet) run this script in CI. Fixes #842
Configuration menu - View commit details
-
Copy full SHA for b1c0ae8 - Browse repository at this point
Copy the full SHA b1c0ae8View commit details -
ignore: fix false positive in path_is_symlink
This commit fixes a bug where the first path always reported itself as as symlink via `path_is_symlink`. Part of this fix includes updating walkdir to 2.2.1, which also includes a corresponding bug fix. Fixes #984
Configuration menu - View commit details
-
Copy full SHA for 57bc174 - Browse repository at this point
Copy the full SHA 57bc174View commit details -
Configuration menu - View commit details
-
Copy full SHA for 538dd22 - Browse repository at this point
Copy the full SHA 538dd22View commit details