mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-08-03 13:42:06 -07:00
Compare commits
3 Commits
grep-0.2.8
...
13.0.0
Author | SHA1 | Date | |
---|---|---|---|
|
af6b6c543b | ||
|
1a4fec8b4a | ||
|
c8d8ab8ded |
12
CHANGELOG.md
12
CHANGELOG.md
@@ -1,9 +1,11 @@
|
|||||||
TBD
|
13.0.0 (2021-06-12)
|
||||||
===
|
===================
|
||||||
ripgrep 13 is a new major version release of ripgrep that primarily contains
|
ripgrep 13 is a new major version release of ripgrep that primarily contains
|
||||||
bug fixes. There is also a fix for a security vulnerability on Windows
|
bug fixes, some performance improvements and a few minor breaking changes.
|
||||||
([CVE-2021-3013](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3013)),
|
There is also a fix for a security vulnerability on Windows
|
||||||
some performance improvements and some minor breaking changes.
|
([CVE-2021-3013](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3013)).
|
||||||
|
|
||||||
|
Some highlights:
|
||||||
|
|
||||||
A new short flag, `-.`, has been added. It is an alias for the `--hidden` flag,
|
A new short flag, `-.`, has been added. It is an alias for the `--hidden` flag,
|
||||||
which instructs ripgrep to search hidden files and directories.
|
which instructs ripgrep to search hidden files and directories.
|
||||||
|
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -445,7 +445,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ripgrep"
|
name = "ripgrep"
|
||||||
version = "12.1.1"
|
version = "13.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bstr",
|
"bstr",
|
||||||
"clap",
|
"clap",
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "ripgrep"
|
name = "ripgrep"
|
||||||
version = "12.1.1" #:version
|
version = "13.0.0" #:version
|
||||||
authors = ["Andrew Gallant <jamslam@gmail.com>"]
|
authors = ["Andrew Gallant <jamslam@gmail.com>"]
|
||||||
description = """
|
description = """
|
||||||
ripgrep is a line-oriented search tool that recursively searches the current
|
ripgrep is a line-oriented search tool that recursively searches the current
|
||||||
@@ -42,7 +42,7 @@ members = [
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bstr = "0.2.12"
|
bstr = "0.2.12"
|
||||||
grep = { version = "0.2.7", path = "crates/grep" }
|
grep = { version = "0.2.8", path = "crates/grep" }
|
||||||
ignore = { version = "0.4.18", path = "crates/ignore" }
|
ignore = { version = "0.4.18", path = "crates/ignore" }
|
||||||
lazy_static = "1.1.0"
|
lazy_static = "1.1.0"
|
||||||
log = "0.4.5"
|
log = "0.4.5"
|
||||||
|
Reference in New Issue
Block a user