Skip to content

Commit

Permalink
0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BurntSushi committed Jan 14, 2017
1 parent 730beb9 commit 057ed63
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 26 deletions.
22 changes: 11 additions & 11 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ripgrep"
version = "0.3.2" #:version
version = "0.4.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 @@ -28,17 +28,17 @@ path = "tests/tests.rs"
bytecount = "0.1.4"
clap = "2.19.0"
env_logger = { version = "0.3", default-features = false }
grep = { version = "0.1.4", path = "grep" }
ignore = { version = "0.1.5", path = "ignore" }
grep = { version = "0.1.5", path = "grep" }
ignore = { version = "0.1.7", path = "ignore" }
lazy_static = "0.2"
libc = "0.2"
log = "0.3"
memchr = "1"
memmap = "0.5"
num_cpus = "1"
regex = "0.2.0"
regex = "0.2.1"
same-file = "0.1.1"
termcolor = { version = "0.1.0", path = "termcolor" }
termcolor = { version = "0.2.0", path = "termcolor" }

[target.'cfg(windows)'.dependencies]
kernel32-sys = "0.2.2"
Expand Down
4 changes: 2 additions & 2 deletions globset/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "globset"
version = "0.1.2" #:version
version = "0.1.3" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Cross platform single glob and glob set matching. Glob set matching is the
Expand All @@ -24,7 +24,7 @@ fnv = "1.0"
lazy_static = "0.2"
log = "0.3"
memchr = "1"
regex = "0.2.0"
regex = "0.2.1"

[dev-dependencies]
glob = "0.2"
Expand Down
4 changes: 2 additions & 2 deletions grep/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grep"
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.
Expand All @@ -15,5 +15,5 @@ license = "Unlicense/MIT"
[dependencies]
log = "0.3"
memchr = "1"
regex = "0.2.0"
regex = "0.2.1"
regex-syntax = "0.4.0"
6 changes: 3 additions & 3 deletions ignore/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ignore"
version = "0.1.6" #:version
version = "0.1.7" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
A fast library for efficiently matching ignore files such as `.gitignore`
Expand All @@ -19,11 +19,11 @@ bench = false

[dependencies]
crossbeam = "0.2"
globset = { version = "0.1.2", path = "../globset" }
globset = { version = "0.1.3", path = "../globset" }
lazy_static = "0.2"
log = "0.3"
memchr = "1"
regex = "0.2.0"
regex = "0.2.1"
thread_local = "0.3.2"
walkdir = "1.0.7"

Expand Down
4 changes: 2 additions & 2 deletions termcolor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "termcolor"
version = "0.1.1" #:version
version = "0.2.0" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
A simple cross platform library for writing colored text to a terminal.
Expand All @@ -17,4 +17,4 @@ name = "termcolor"
bench = false

[target.'cfg(windows)'.dependencies]
wincolor = { version = "0.1.0", path = "../wincolor" }
wincolor = { version = "0.1.1", path = "../wincolor" }
2 changes: 1 addition & 1 deletion wincolor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wincolor"
version = "0.1.0" #:version
version = "0.1.1" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
A simple Windows specific API for controlling text color in a Windows console.
Expand Down

0 comments on commit 057ed63

Please sign in to comment.