Skip to content

Commit

Permalink
ripgrep: release 12.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BurntSushi committed Mar 16, 2020
1 parent a8c1fb7 commit 92daa34
Show file tree
Hide file tree
Showing 11 changed files with 51 additions and 51 deletions.
56 changes: 28 additions & 28 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ripgrep"
version = "11.0.2" #:version
version = "12.0.0" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
ripgrep is a line-oriented search tool that recursively searches your current
Expand Down Expand Up @@ -46,18 +46,18 @@ members = [
]

[dependencies]
bstr = "0.2.0"
grep = { version = "0.2.4", path = "crates/grep" }
ignore = { version = "0.4.7", path = "crates/ignore" }
bstr = "0.2.12"
grep = { version = "0.2.5", path = "crates/grep" }
ignore = { version = "0.4.12", path = "crates/ignore" }
lazy_static = "1.1.0"
log = "0.4.5"
num_cpus = "1.8.0"
regex = "1.0.5"
regex = "1.3.5"
serde_json = "1.0.23"
termcolor = "1.0.3"
termcolor = "1.1.0"

[dependencies.clap]
version = "2.32.0"
version = "2.33.0"
default-features = false
features = ["suggestions"]

Expand All @@ -68,7 +68,7 @@ version = "0.3.0"
lazy_static = "1.1.0"

[build-dependencies.clap]
version = "2.32.0"
version = "2.33.0"
default-features = false
features = ["suggestions"]

Expand Down
2 changes: 1 addition & 1 deletion crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion crates/globset/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
14 changes: 7 additions & 7 deletions crates/grep/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion crates/ignore/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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`
Expand Down
2 changes: 1 addition & 1 deletion crates/matcher/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion crates/pcre2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion crates/printer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/regex/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion crates/searcher/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit 92daa34

Please sign in to comment.