summaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2018-02-20 20:18:01 -0500
committerAndrew Gallant <jamslam@gmail.com>2018-02-20 20:18:01 -0500
commit6862e078707b41d36c1067b09c3efa84b406db8d (patch)
tree026d9abeea45a6a757aaf762e85364881162d827 /CHANGELOG.md
parenta6d09b2d4292fe2b2123025f7bcf223b46856fbb (diff)
changelog: 0.8.1
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md36
1 files changed, 36 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 85777013..c7a7c571 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,39 @@
+0.8.1 (2018-02-20)
+==================
+This is a patch release of ripgrep that primarily fixes regressions introduced
+in 0.8.0 (#820 and #824) in directory traversal on Windows. These regressions
+do not impact non-Windows users.
+
+Feature enhancements:
+
+* Added or improved file type filtering for csv and VHDL.
+* [FEATURE #798](https://github.com/BurntSushi/ripgrep/issues/798):
+ Add `underline` support to `termcolor` and ripgrep. See documentation on the
+ `--colors` flag for details.
+
+Bug fixes:
+
+* [BUG #684](https://github.com/BurntSushi/ripgrep/issues/684):
+ Improve documentation for the `--ignore-file` flag.
+* [BUG #789](https://github.com/BurntSushi/ripgrep/issues/789):
+ Don't show `(rev )` if the revision wasn't available during the build.
+* [BUG #791](https://github.com/BurntSushi/ripgrep/issues/791):
+ Add man page to ARM release.
+* [BUG #797](https://github.com/BurntSushi/ripgrep/issues/797):
+ Improve documentation for "intense" setting in `termcolor`.
+* [BUG #800](https://github.com/BurntSushi/ripgrep/issues/800):
+ Fix a bug in the `ignore` crate for custom ignore files. This had no impact
+ on ripgrep.
+* [BUG #807](https://github.com/BurntSushi/ripgrep/issues/807):
+ Fix a bug where `rg --hidden .` behaved differently from `rg --hidden ./`.
+* [BUG #815](https://github.com/BurntSushi/ripgrep/issues/815):
+ Clarify a common failure mode in user guide.
+* [BUG #820](https://github.com/BurntSushi/ripgrep/issues/820):
+ Fixes a bug on Windows where symlinks were followed even if not requested.
+* [BUG #824](https://github.com/BurntSushi/ripgrep/issues/824):
+ Fix a performance regression in directory traversal on Windows.
+
+
0.8.0 (2018-02-11)
==================
This is a new minor version releae of ripgrep that satisfies several popular