summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2018-03-12 21:46:25 -0400
committerAndrew Gallant <jamslam@gmail.com>2018-03-12 23:21:42 -0400
commitc2e97cd858fd5a18bcfe31979dbd5d859cb240aa (patch)
tree4ef1f8bb5d615938ac2184f0ac7cf06d7347a823
parent1f70e9187ceca65e7196f65e8cad1cba65efb47c (diff)
changelog: update for 0.9.0
-rw-r--r--CHANGELOG.md39
1 files changed, 39 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c7a7c571..5012596c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,42 @@
+0.9.0 (TBD)
+===========
+This is a new minor version release of ripgrep that mostly contains bug fixes.
+
+Releases provided on Github for `x86` and `x86_64` will now work on all target
+CPUs, and will also automatically take advantage of features found on modern
+CPUs (such as AVX2) for additional optimizations.
+
+**BREAKING CHANGES**:
+
+* When `--count` and `--only-matching` are provided simultaneously, the
+ behavior of ripgrep is as if the `--count-matches` flag was given. That is,
+ the total number of matches is reported, where there may be multiple matches
+ per line. Previously, the behavior of ripgrep was to report the total number
+ of matching lines. (Note that this behavior diverges from the behavior of
+ GNU grep.)
+
+Feature enhancements:
+
+* [FEATURE #411](https://github.com/BurntSushi/ripgrep/issues/411):
+ Add a `--stats` flag, which emits aggregate statistics after search results.
+* [FEATURE #812](https://github.com/BurntSushi/ripgrep/issues/812):
+ Add `-b/--byte-offset` flag that reports byte offset of each matching line.
+* [FEATURE #814](https://github.com/BurntSushi/ripgrep/issues/814):
+ Add `--count-matches` flag, which is like `--count`, but for each match.
+
+Bug fixes:
+
+* [BUG #135](https://github.com/BurntSushi/ripgrep/issues/135):
+ Release portable binaries that conditionally use SSSE3, AVX2, etc., at
+ runtime.
+* [BUG #526](https://github.com/BurntSushi/ripgrep/issues/526):
+ Support backslash escapes in globs.
+* [BUG #832](https://github.com/BurntSushi/ripgrep/issues/832):
+ Clarify usage instructions for `-f/--file` flag.
+* [BUG #852](https://github.com/BurntSushi/ripgrep/issues/852):
+ Be robust with respect to `ENOMEM` errors returned by `mmap`.
+
+
0.8.1 (2018-02-20)
==================
This is a patch release of ripgrep that primarily fixes regressions introduced