Compare commits

...

3 Commits
0.2.7 ... 0.2.8

Author SHA1 Message Date
Andrew Gallant
18943b9317 0.2.8 2016-11-06 16:16:48 -05:00
Andrew Gallant
68427b5b79 changelog 0.2.8 2016-11-06 16:16:19 -05:00
Andrew Gallant
4ca15a8a51 simd-accel should not invoke avx-accel.
This was a silly transcription error.
2016-11-06 16:15:23 -05:00
3 changed files with 11 additions and 3 deletions

View File

@@ -1,3 +1,11 @@
0.2.8
=====
Bug fixes:
* Fixed a bug with the SIMD/AVX features for using bytecount in commit
`4ca15a`.
0.2.7 0.2.7
===== =====
Performance improvements: Performance improvements:

2
Cargo.lock generated
View File

@@ -1,6 +1,6 @@
[root] [root]
name = "ripgrep" name = "ripgrep"
version = "0.2.7" version = "0.2.8"
dependencies = [ dependencies = [
"bytecount 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "bytecount 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
"ctrlc 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "ctrlc 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "ripgrep" name = "ripgrep"
version = "0.2.7" #:version version = "0.2.8" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"] authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """ description = """
Line oriented search tool using Rust's regex library. Combines the raw Line oriented search tool using Rust's regex library. Combines the raw
@@ -46,7 +46,7 @@ winapi = "0.2"
[features] [features]
avx-accel = ["bytecount/avx-accel"] avx-accel = ["bytecount/avx-accel"]
simd-accel = ["bytecount/avx-accel", "regex/simd-accel"] simd-accel = ["bytecount/simd-accel", "regex/simd-accel"]
[profile.release] [profile.release]
debug = true debug = true