Skip to content

Commit

Permalink
cargo: bump to 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BurntSushi committed Oct 22, 2017
1 parent ad5fa56 commit efa4de8
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ripgrep"
version = "0.6.0" #:version
version = "0.7.0" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Line oriented search tool using Rust's regex library. Combines the raw
Expand Down Expand Up @@ -35,8 +35,8 @@ bytecount = "0.1.4"
clap = "2.26"
encoding_rs = "0.7"
env_logger = { version = "0.4", default-features = false }
grep = { version = "0.1.5", path = "grep" }
ignore = { version = "0.2.2", path = "ignore" }
grep = { version = "0.1.7", path = "grep" }
ignore = { version = "0.3.0", path = "ignore" }
lazy_static = "0.2"
libc = "0.2"
log = "0.3"
Expand All @@ -45,7 +45,7 @@ memmap = "0.5"
num_cpus = "1"
regex = "0.2.1"
same-file = "1"
termcolor = { version = "0.3.0", path = "termcolor" }
termcolor = { version = "0.3.3", path = "termcolor" }

[build-dependencies]
clap = "2.26"
Expand Down
2 changes: 1 addition & 1 deletion globset/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "globset"
version = "0.2.0" #:version
version = "0.2.1" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Cross platform single glob and glob set matching. Glob set matching is the
Expand Down
2 changes: 1 addition & 1 deletion grep/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grep"
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
4 changes: 2 additions & 2 deletions ignore/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ignore"
version = "0.2.2" #:version
version = "0.3.0" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
A fast library for efficiently matching ignore files such as `.gitignore`
Expand All @@ -19,7 +19,7 @@ bench = false

[dependencies]
crossbeam = "0.2"
globset = { version = "0.2.0", path = "../globset" }
globset = { version = "0.2.1", path = "../globset" }
lazy_static = "0.2"
log = "0.3"
memchr = "2"
Expand Down

0 comments on commit efa4de8

Please sign in to comment.