Compare commits
5 Commits
grep-print
...
14.1.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4649aa9700 | ||
|
|
c009652e77 | ||
|
|
b9f7a9ba2b | ||
|
|
a1960877cf | ||
|
|
bb0925af91 |
@@ -1,6 +1,13 @@
|
|||||||
14.1.1 (2024-09-08)
|
14.1.1 (2024-09-08)
|
||||||
===================
|
===================
|
||||||
Unreleased changes. Release notes have not yet been written.
|
This is a minor release with a bug fix for a matching bug. In particular, a bug
|
||||||
|
was found that could cause ripgrep to ignore lines that should match. That is,
|
||||||
|
false negatives. It is difficult to characterize the specific set of regexes
|
||||||
|
in which this occurs as it requires multiple different optimization strategies
|
||||||
|
to collide and produce an incorrect result. But as one reported example, in
|
||||||
|
ripgrep, the regex `(?i:e.x|ex)` does not match `e-x` when it should. (This
|
||||||
|
bug is a result of an inner literal optimization performed in the `grep-regex`
|
||||||
|
crate and not in the `regex` crate.)
|
||||||
|
|
||||||
Bug fixes:
|
Bug fixes:
|
||||||
|
|
||||||
|
|||||||
4
Cargo.lock
generated
4
Cargo.lock
generated
@@ -119,7 +119,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "grep"
|
name = "grep"
|
||||||
version = "0.3.1"
|
version = "0.3.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"grep-cli",
|
"grep-cli",
|
||||||
"grep-matcher",
|
"grep-matcher",
|
||||||
@@ -361,7 +361,7 @@ checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ripgrep"
|
name = "ripgrep"
|
||||||
version = "14.1.0"
|
version = "14.1.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"bstr",
|
"bstr",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "ripgrep"
|
name = "ripgrep"
|
||||||
version = "14.1.0" #:version
|
version = "14.1.1" #: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
|
||||||
@@ -51,7 +51,7 @@ members = [
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.75"
|
anyhow = "1.0.75"
|
||||||
bstr = "1.7.0"
|
bstr = "1.7.0"
|
||||||
grep = { version = "0.3.1", path = "crates/grep" }
|
grep = { version = "0.3.2", path = "crates/grep" }
|
||||||
ignore = { version = "0.4.23", path = "crates/ignore" }
|
ignore = { version = "0.4.23", path = "crates/ignore" }
|
||||||
lexopt = "0.3.0"
|
lexopt = "0.3.0"
|
||||||
log = "0.4.5"
|
log = "0.4.5"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "grep"
|
name = "grep"
|
||||||
version = "0.3.1" #:version
|
version = "0.3.2" #:version
|
||||||
authors = ["Andrew Gallant <jamslam@gmail.com>"]
|
authors = ["Andrew Gallant <jamslam@gmail.com>"]
|
||||||
description = """
|
description = """
|
||||||
Fast line oriented regex searching as a library.
|
Fast line oriented regex searching as a library.
|
||||||
@@ -17,7 +17,7 @@ edition = "2021"
|
|||||||
grep-cli = { version = "0.1.11", path = "../cli" }
|
grep-cli = { version = "0.1.11", path = "../cli" }
|
||||||
grep-matcher = { version = "0.1.7", path = "../matcher" }
|
grep-matcher = { version = "0.1.7", path = "../matcher" }
|
||||||
grep-pcre2 = { version = "0.1.8", path = "../pcre2", optional = true }
|
grep-pcre2 = { version = "0.1.8", path = "../pcre2", optional = true }
|
||||||
grep-printer = { version = "0.2.1", path = "../printer" }
|
grep-printer = { version = "0.2.2", path = "../printer" }
|
||||||
grep-regex = { version = "0.1.13", path = "../regex" }
|
grep-regex = { version = "0.1.13", path = "../regex" }
|
||||||
grep-searcher = { version = "0.1.14", path = "../searcher" }
|
grep-searcher = { version = "0.1.14", path = "../searcher" }
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user