summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2019-04-15 18:02:44 -0400
committerAndrew Gallant <jamslam@gmail.com>2019-04-15 18:02:44 -0400
commitd66610b295f503b0faca3d3874fb49be254aeae8 (patch)
tree81015f11efd7946c3f5462c27aa783226c154ca3
parent019ae1989b2eefa5edbe2ee10d8e328a610bb597 (diff)
grep-cli: release 0.1.2grep-cli-0.1.2
-rw-r--r--Cargo.lock4
-rw-r--r--grep-cli/Cargo.toml2
-rw-r--r--grep/Cargo.toml2
3 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index cd63bdd6..adf96128 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -151,7 +151,7 @@ dependencies = [
name = "grep"
version = "0.2.3"
dependencies = [
- "grep-cli 0.1.1",
+ "grep-cli 0.1.2",
"grep-matcher 0.1.2",
"grep-pcre2 0.1.3",
"grep-printer 0.1.2",
@@ -163,7 +163,7 @@ dependencies = [
[[package]]
name = "grep-cli"
-version = "0.1.1"
+version = "0.1.2"
dependencies = [
"atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
"bstr 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/grep-cli/Cargo.toml b/grep-cli/Cargo.toml
index b415e8c7..eecba548 100644
--- a/grep-cli/Cargo.toml
+++ b/grep-cli/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grep-cli"
-version = "0.1.1" #:version
+version = "0.1.2" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Utilities for search oriented command line applications.
diff --git a/grep/Cargo.toml b/grep/Cargo.toml
index 21803ccd..2598de3f 100644
--- a/grep/Cargo.toml
+++ b/grep/Cargo.toml
@@ -13,7 +13,7 @@ keywords = ["regex", "grep", "egrep", "search", "pattern"]
license = "Unlicense/MIT"
[dependencies]
-grep-cli = { version = "0.1.1", path = "../grep-cli" }
+grep-cli = { version = "0.1.2", path = "../grep-cli" }
grep-matcher = { version = "0.1.2", path = "../grep-matcher" }
grep-pcre2 = { version = "0.1.3", path = "../grep-pcre2", optional = true }
grep-printer = { version = "0.1.2", path = "../grep-printer" }