summaryrefslogtreecommitdiffstats
path: root/crates
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2020-03-15 21:38:59 -0400
committerAndrew Gallant <jamslam@gmail.com>2020-03-15 21:42:54 -0400
commit92daa34eb3031ae2c61bb81da4d9245b1fa7fff9 (patch)
tree68bd4dfa314cd6266a45433af3615f6828912e02 /crates
parenta8c1fb7c883032aea6c7f84bd6cb42226253cbcc (diff)
Diffstat (limited to 'crates')
-rw-r--r--crates/cli/Cargo.toml2
-rw-r--r--crates/globset/Cargo.toml2
-rw-r--r--crates/grep/Cargo.toml14
-rw-r--r--crates/ignore/Cargo.toml2
-rw-r--r--crates/matcher/Cargo.toml2
-rw-r--r--crates/pcre2/Cargo.toml2
-rw-r--r--crates/printer/Cargo.toml2
-rw-r--r--crates/regex/Cargo.toml2
-rw-r--r--crates/searcher/Cargo.toml2
9 files changed, 15 insertions, 15 deletions
diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml
index e20c1f76..b21ad0cf 100644
--- a/crates/cli/Cargo.toml
+++ b/crates/cli/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grep-cli"
-version = "0.1.3" #:version
+version = "0.1.4" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Utilities for search oriented command line applications.
diff --git a/crates/globset/Cargo.toml b/crates/globset/Cargo.toml
index 5eef20ae..7c993591 100644
--- a/crates/globset/Cargo.toml
+++ b/crates/globset/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "globset"
-version = "0.4.4" #:version
+version = "0.4.5" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Cross platform single glob and glob set matching. Glob set matching is the
diff --git a/crates/grep/Cargo.toml b/crates/grep/Cargo.toml
index af39d196..1c8f5ab7 100644
--- a/crates/grep/Cargo.toml
+++ b/crates/grep/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grep"
-version = "0.2.4" #:version
+version = "0.2.5" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Fast line oriented regex searching as a library.
@@ -13,12 +13,12 @@ keywords = ["regex", "grep", "egrep", "search", "pattern"]
license = "Unlicense/MIT"
[dependencies]
-grep-cli = { version = "0.1.2", path = "../cli" }
-grep-matcher = { version = "0.1.2", path = "../matcher" }
-grep-pcre2 = { version = "0.1.3", path = "../pcre2", optional = true }
-grep-printer = { version = "0.1.2", path = "../printer" }
-grep-regex = { version = "0.1.3", path = "../regex" }
-grep-searcher = { version = "0.1.4", path = "../searcher" }
+grep-cli = { version = "0.1.4", path = "../cli" }
+grep-matcher = { version = "0.1.4", path = "../matcher" }
+grep-pcre2 = { version = "0.1.4", path = "../pcre2", optional = true }
+grep-printer = { version = "0.1.4", path = "../printer" }
+grep-regex = { version = "0.1.6", path = "../regex" }
+grep-searcher = { version = "0.1.7", path = "../searcher" }
[dev-dependencies]
termcolor = "1.0.4"
diff --git a/crates/ignore/Cargo.toml b/crates/ignore/Cargo.toml
index 4e79c7ba..e0c924e0 100644
--- a/crates/ignore/Cargo.toml
+++ b/crates/ignore/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "ignore"
-version = "0.4.11" #:version
+version = "0.4.12" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
A fast library for efficiently matching ignore files such as `.gitignore`
diff --git a/crates/matcher/Cargo.toml b/crates/matcher/Cargo.toml
index 99df4433..deda58d0 100644
--- a/crates/matcher/Cargo.toml
+++ b/crates/matcher/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grep-matcher"
-version = "0.1.3" #:version
+version = "0.1.4" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
A trait for regular expressions, with a focus on line oriented search.
diff --git a/crates/pcre2/Cargo.toml b/crates/pcre2/Cargo.toml
index 6f9673d7..79fcf436 100644
--- a/crates/pcre2/Cargo.toml
+++ b/crates/pcre2/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grep-pcre2"
-version = "0.1.3" #:version
+version = "0.1.4" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Use PCRE2 with the 'grep' crate.
diff --git a/crates/printer/Cargo.toml b/crates/printer/Cargo.toml
index 8e1c21ba..d1a20fe8 100644
--- a/crates/printer/Cargo.toml
+++ b/crates/printer/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grep-printer"
-version = "0.1.3" #:version
+version = "0.1.4" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
An implementation of the grep crate's Sink trait that provides standard
diff --git a/crates/regex/Cargo.toml b/crates/regex/Cargo.toml
index 17b03b88..c7323761 100644
--- a/crates/regex/Cargo.toml
+++ b/crates/regex/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grep-regex"
-version = "0.1.5" #:version
+version = "0.1.6" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Use Rust's regex library with the 'grep' crate.
diff --git a/crates/searcher/Cargo.toml b/crates/searcher/Cargo.toml
index 6488b70f..f4e3c73c 100644
--- a/crates/searcher/Cargo.toml
+++ b/crates/searcher/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grep-searcher"
-version = "0.1.6" #:version
+version = "0.1.7" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Fast line oriented regex searching as a library.