summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2023-11-26 15:24:09 -0500
committerAndrew Gallant <jamslam@gmail.com>2023-11-26 15:24:09 -0500
commit625743d7c833023c7a196b26650cba4dba6cdb48 (patch)
treee7a6757bf1f9a739a080a8b9a015e9b1fd502c93
parent3d0171040a684533b8ba41cdfc030870d753eb4f (diff)
grep-0.3.0grep-0.3.0
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--crates/grep/Cargo.toml2
3 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 30b81edc..a9818d05 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -134,7 +134,7 @@ dependencies = [
[[package]]
name = "grep"
-version = "0.2.13"
+version = "0.3.0"
dependencies = [
"grep-cli",
"grep-matcher",
diff --git a/Cargo.toml b/Cargo.toml
index 51b080c6..ca7f645b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -51,7 +51,7 @@ members = [
[dependencies]
anyhow = "1.0.75"
bstr = "1.7.0"
-grep = { version = "0.2.13", path = "crates/grep" }
+grep = { version = "0.3.0", path = "crates/grep" }
ignore = { version = "0.4.21", path = "crates/ignore" }
lexopt = "0.3.0"
log = "0.4.5"
diff --git a/crates/grep/Cargo.toml b/crates/grep/Cargo.toml
index f7bc75ef..0634bd9b 100644
--- a/crates/grep/Cargo.toml
+++ b/crates/grep/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grep"
-version = "0.2.13" #:version
+version = "0.3.0" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Fast line oriented regex searching as a library.