summaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2015-08-10 18:34:20 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2015-08-10 18:34:20 +0900
commit766427de0c04c64085c5ed907e3fdcc6124fa2dd (patch)
treeb131c9e5354b17c3ae976e3f3d05b7ac77cb2788 /CHANGELOG.md
parenta7b75c99a5c2dd76163e229a4b6f9f49401272e0 (diff)
Fix --with-nth performance; avoid regex if possible
Close #317
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0bce59b3..f7ec3838 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,15 @@
CHANGELOG
=========
+0.10.3
+------
+
+- Fixed slow performance of `--with-nth` when used with `--delimiter`
+ - Regular expression engine of Golang as of now is very slow, so the fixed
+ version will treat the given delimiter pattern as a plain string instead
+ of a regular expression unless it contains special characters and is
+ a valid regular expression.
+
0.10.2
------