Download Latest Version ripgrep-15.1.0-i686-pc-windows-msvc.zip (1.7 MB)
Email in envelope

Get an email when there's a new version of ripgrep

Home / 15.0.0
Name Modified Size InfoDownloads / Week
Parent folder
ripgrep-15.0.0-x86_64-unknown-linux-musl.tar.gz 2025-10-16 2.3 MB
ripgrep-15.0.0-x86_64-unknown-linux-musl.tar.gz.sha256 2025-10-16 114 Bytes
ripgrep-15.0.0-armv7-unknown-linux-musleabi.tar.gz 2025-10-16 1.8 MB
ripgrep-15.0.0-armv7-unknown-linux-musleabi.tar.gz.sha256 2025-10-16 117 Bytes
ripgrep-15.0.0-aarch64-pc-windows-msvc.zip 2025-10-16 1.7 MB
ripgrep-15.0.0-aarch64-pc-windows-msvc.zip.sha256 2025-10-16 179 Bytes
ripgrep-15.0.0-armv7-unknown-linux-gnueabihf.tar.gz 2025-10-16 1.8 MB
ripgrep-15.0.0-armv7-unknown-linux-gnueabihf.tar.gz.sha256 2025-10-16 118 Bytes
ripgrep_15.0.0-1_amd64.deb 2025-10-16 1.7 MB
ripgrep_15.0.0-1_amd64.deb.sha256 2025-10-16 93 Bytes
ripgrep-15.0.0-i686-pc-windows-msvc.zip 2025-10-16 1.7 MB
ripgrep-15.0.0-i686-pc-windows-msvc.zip.sha256 2025-10-16 176 Bytes
ripgrep-15.0.0-aarch64-unknown-linux-gnu.tar.gz 2025-10-16 1.9 MB
ripgrep-15.0.0-aarch64-unknown-linux-gnu.tar.gz.sha256 2025-10-16 114 Bytes
ripgrep-15.0.0-x86_64-pc-windows-gnu.zip 2025-10-16 1.9 MB
ripgrep-15.0.0-x86_64-pc-windows-gnu.zip.sha256 2025-10-16 177 Bytes
ripgrep-15.0.0-i686-unknown-linux-gnu.tar.gz 2025-10-16 2.0 MB
ripgrep-15.0.0-i686-unknown-linux-gnu.tar.gz.sha256 2025-10-16 111 Bytes
ripgrep-15.0.0-s390x-unknown-linux-gnu.tar.gz 2025-10-16 2.4 MB
ripgrep-15.0.0-s390x-unknown-linux-gnu.tar.gz.sha256 2025-10-16 112 Bytes
ripgrep-15.0.0-armv7-unknown-linux-musleabihf.tar.gz 2025-10-16 1.8 MB
ripgrep-15.0.0-armv7-unknown-linux-musleabihf.tar.gz.sha256 2025-10-16 119 Bytes
ripgrep-15.0.0-x86_64-pc-windows-msvc.zip.sha256 2025-10-16 178 Bytes
ripgrep-15.0.0-x86_64-pc-windows-msvc.zip 2025-10-16 1.8 MB
ripgrep-15.0.0-x86_64-apple-darwin.tar.gz 2025-10-16 1.9 MB
ripgrep-15.0.0-x86_64-apple-darwin.tar.gz.sha256 2025-10-16 108 Bytes
ripgrep-15.0.0-aarch64-apple-darwin.tar.gz 2025-10-16 1.8 MB
ripgrep-15.0.0-aarch64-apple-darwin.tar.gz.sha256 2025-10-16 109 Bytes
15.0.0 source code.tar.gz 2025-10-16 600.7 kB
15.0.0 source code.zip 2025-10-16 704.0 kB
README.md 2025-10-16 6.5 kB
Totals: 31 Items   27.8 MB 7

Sponsorship is appreciated!

ripgrep 15 is a new major version release of ripgrep that mostly has bug fixes, some minor performance improvements and minor new features.

In case you haven't heard of it before, ripgrep is a line-oriented search tool that recursively searches the current directory for a regex pattern. By default, ripgrep will respect gitignore rules and automatically skip hidden files/directories and binary files.

Here are some highlights:

  • Several bugs around gitignore matching have been fixed. This includes a commonly reported bug related to applying gitignore rules from parent directories.
  • A memory usage regression when handling very large gitignore files has been fixed.
  • rg -vf file, where file is empty, now matches everything.
  • The -r/--replace flag now works with --json.
  • A subset of Jujutsu (jj) repositories are now treated as if they were git repositories. That is, ripgrep will respect jj's gitignores.
  • Globs can now use nested curly braces.

Platform support:

  • aarch64 for Windows now has release artifacts.
  • powerpc64 no longer has release artifacts generated for it. The CI release workflow stopped working, and I didn't deem it worth my time to debug it. If someone wants this and can test it, I'd be happy to add it back.
  • ripgrep binaries are now compiled with full LTO enabled. You may notice small performance improvements from this and a modest decrease in binary size.

Performance improvements:

  • PERF [#2111]: Don't resolve helper binaries on Windows when -z/--search-zip isn't used.
  • PERF [#2865]: Avoid using path canonicalization on Windows when emitting hyperlinks.
  • PERF [#3184]: Improve performance of large values with -A/--after-context.

Bug fixes:

  • BUG [#829], BUG [#2731], BUG [#2747], BUG [#2770], BUG [#2778], BUG [#2836], BUG [#2933], BUG [#3067]: Fix bug related to gitignores from parent directories.
  • BUG [#1332], BUG [#3001]: Make rg -vf file where file is empty match everything.
  • BUG [#2177]: Ignore a UTF-8 BOM marker at the start of .gitignore (and similar files).
  • BUG [#2750]: Fix memory usage regression for some truly large gitignore files.
  • BUG [#2944]: Fix a bug where the "bytes searched" in --stats output could be incorrect.
  • BUG [#2990]: Fix a bug where ripgrep would mishandle globs that ended with a ..
  • BUG [#2094], BUG [#3076]: Fix bug with -m/--max-count and -U/--multiline showing too many matches.
  • BUG [#3100]: Preserve line terminators when using -r/--replace flag.
  • BUG [#3108]: Fix a bug where -q --files-without-match inverted the exit code.
  • BUG [#3131]: Document inconsistency between -c/--count and --files-with-matches.
  • BUG [#3135]: Fix rare panic for some classes of large regexes on large haystacks.
  • BUG [#3140]: Ensure hyphens in flag names are escaped in the roff text for the man page.
  • BUG [#3155]: Statically compile PCRE2 into macOS release artifacts on aarch64.
  • BUG [#3173]: Fix ancestor ignore filter bug when searching whitelisted hidden files.
  • BUG [#3178]: Fix bug causing incorrect summary statistics with --json flag.
  • BUG [#3179]: Fix gitignore bug when searching absolute paths with global gitignores.
  • BUG [#3180]: Fix a panicking bug when using -U/--multiline and -r/--replace.

Feature enhancements:

  • Many enhancements to the default set of file types available for filtering.
  • FEATURE [#1872]: Make -r/--replace work with --json.
  • FEATURE [#2708]: Completions for the fish shell take ripgrep's config file into account.
  • FEATURE [#2841]: Add italic to the list of available style attributes in --color.
  • FEATURE [#2842]: Directories containing .jj are now treated as git repositories.
  • FEATURE [#2849]: When using multithreading, schedule files to search in order given on CLI.
  • FEATURE [#2943]: Add aarch64 release artifacts for Windows.
  • FEATURE [#3024]: Add highlight color type, for styling non-matching text in a matching line.
  • FEATURE [#3048]: Globs in ripgrep (and the globset crate) now support nested alternates.
  • FEATURE [#3096]: Improve completions for --hyperlink-format in bash and fish.
  • FEATURE [#3102]: Improve completions for --hyperlink-format in zsh.
Source: README.md, updated 2025-10-16