summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2019-06-26 16:53:30 -0400
committerAndrew Gallant <jamslam@gmail.com>2019-06-26 16:53:30 -0400
commit785c1f176635fe617f012ed50369388359e26078 (patch)
tree8109336c6b36e7456e6998f8cf250f77acc9c931
parent8b734cb490bcac1534b9eeee8b54d9696968e810 (diff)
release: globset, grep-cli, grep-printer, grep-searchergrep-searcher-0.1.5grep-printer-0.1.3grep-cli-0.1.3globset-0.4.4
-rw-r--r--Cargo.lock20
-rw-r--r--globset/Cargo.toml2
-rw-r--r--grep-cli/Cargo.toml2
-rw-r--r--grep-printer/Cargo.toml2
-rw-r--r--grep-searcher/Cargo.toml2
5 files changed, 14 insertions, 14 deletions
diff --git a/Cargo.lock b/Cargo.lock
index c0be9ec6..cc1b82bd 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -142,7 +142,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "globset"
-version = "0.4.3"
+version = "0.4.4"
dependencies = [
"aho-corasick 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
"bstr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -156,23 +156,23 @@ dependencies = [
name = "grep"
version = "0.2.4"
dependencies = [
- "grep-cli 0.1.2",
+ "grep-cli 0.1.3",
"grep-matcher 0.1.2",
"grep-pcre2 0.1.3",
- "grep-printer 0.1.2",
+ "grep-printer 0.1.3",
"grep-regex 0.1.3",
- "grep-searcher 0.1.4",
+ "grep-searcher 0.1.5",
"termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
"walkdir 2.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "grep-cli"
-version = "0.1.2"
+version = "0.1.3"
dependencies = [
"atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
"bstr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
- "globset 0.4.3",
+ "globset 0.4.4",
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
"regex 1.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -199,13 +199,13 @@ dependencies = [
[[package]]
name = "grep-printer"
-version = "0.1.2"
+version = "0.1.3"
dependencies = [
"base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
"bstr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"grep-matcher 0.1.2",
"grep-regex 0.1.3",
- "grep-searcher 0.1.4",
+ "grep-searcher 0.1.5",
"serde 1.0.93 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_derive 1.0.93 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -227,7 +227,7 @@ dependencies = [
[[package]]
name = "grep-searcher"
-version = "0.1.4"
+version = "0.1.5"
dependencies = [
"bstr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"bytecount 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -245,7 +245,7 @@ name = "ignore"
version = "0.4.7"
dependencies = [
"crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
- "globset 0.4.3",
+ "globset 0.4.4",
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
"memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/globset/Cargo.toml b/globset/Cargo.toml
index 1b541258..6fe923e7 100644
--- a/globset/Cargo.toml
+++ b/globset/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "globset"
-version = "0.4.3" #:version
+version = "0.4.4" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Cross platform single glob and glob set matching. Glob set matching is the
diff --git a/grep-cli/Cargo.toml b/grep-cli/Cargo.toml
index 00f5f76d..67b83f42 100644
--- a/grep-cli/Cargo.toml
+++ b/grep-cli/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grep-cli"
-version = "0.1.2" #:version
+version = "0.1.3" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Utilities for search oriented command line applications.
diff --git a/grep-printer/Cargo.toml b/grep-printer/Cargo.toml
index 79177bbd..cd2028aa 100644
--- a/grep-printer/Cargo.toml
+++ b/grep-printer/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grep-printer"
-version = "0.1.2" #:version
+version = "0.1.3" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
An implementation of the grep crate's Sink trait that provides standard
diff --git a/grep-searcher/Cargo.toml b/grep-searcher/Cargo.toml
index 471d3dfe..9b74f8b6 100644
--- a/grep-searcher/Cargo.toml
+++ b/grep-searcher/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grep-searcher"
-version = "0.1.4" #:version
+version = "0.1.5" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Fast line oriented regex searching as a library.