Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.2
->0.3
Release Notes
BurntSushi/ripgrep (grep)
v0.3.2
Compare Source
=====
Feature enhancements:
Bug fixes:
Make smart case slightly less conservative.
Clarify use of --heading/--no-heading.
BUG #264,
BUG #267:
Fix matching bug caused by literal optimizations.
Fix bug that caused
rg foo
andrg foo/
to have different behaviorwhen
foo
was a symlink.Fix bug where patterns starting with a
-
couldn't be used with the-e/--regexp
flag. (This resolves a regression that was introduced inripgrep 0.3.0.)
v0.3.1
Compare Source
=====
Bug fixes:
ripgrep didn't respect
--colors foo:none
correctly. Now it does.v0.3.0
Compare Source
=====
This is a new minor version release of ripgrep that includes two breaking
changes with lots of bug fixes and some new features and performance
improvements. Notably, if you had a problem with colors or piping on Windows
before, then that should now be fixed in this release.
BREAKING CHANGES:
Rust 1.9. The cause of this was the move from
Docopt to Clap
for argument parsing.
-e/--regexp
flag can no longer accept a pattern starting with a-
.There are two work-arounds:
rg -- -foo
andrg [-]foo
orrg -e [-]foo
will all search for the same
-foo
pattern. The cause of this was the movefrom Docopt to Clap
for argument parsing.
This may get fixed in the
future..
Performance improvements:
ripgrep now performs similar to GNU grep on small corpora.
ripgrep no longer slows down because of argument parsing when given a large
argument list.
Feature enhancements:
Add a
-f/--file
flag that causes ripgrep to read patterns from a file.Add a
--colors
flag that enables one to customize the colors used inripgrep's output.
Add a
--files-without-match
flag that shows only file paths that containzero matches.
Add completion files to the release (Bash, Fish and PowerShell).
Bug fixes:
Use correct ANSI escape sequences when
TERM=screen.linux
.ripgrep now detects stdin on Windows automatically.
Colors should now work correctly and automatically inside mintty.
Colors should now work within Emacs. In particular,
--color=always
willemit colors regardless of the current environment.
Show less content when running
rg -h
. The full help content can beaccessed with
rg --help
.Support non-UTF-8 file names on Unix platforms.
Switch from block buffering to line buffering.
Some error messages weren't suppressed when
--no-messages
was used.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.