diff --git a/Cargo.lock b/Cargo.lock index 86ba963..452d408 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -159,7 +159,7 @@ dependencies = [ [[package]] name = "grep" -version = "0.3.2" +version = "0.4.0" dependencies = [ "grep-cli", "grep-matcher", diff --git a/Cargo.toml b/Cargo.toml index 779c15f..b210fc9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,7 +52,7 @@ members = [ [dependencies] anyhow = "1.0.75" bstr = "1.7.0" -grep = { version = "0.3.2", path = "crates/grep" } +grep = { version = "0.4.0", path = "crates/grep" } ignore = { version = "0.4.24", path = "crates/ignore" } lexopt = "0.3.0" log = "0.4.5" diff --git a/crates/grep/Cargo.toml b/crates/grep/Cargo.toml index 0f96695..47712e6 100644 --- a/crates/grep/Cargo.toml +++ b/crates/grep/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grep" -version = "0.3.2" #:version +version = "0.4.0" #:version authors = ["Andrew Gallant "] description = """ Fast line oriented regex searching as a library.