summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2017-07-21 00:08:55 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2017-07-21 00:08:55 +0900
commit18a1aeaa911700488258999a9f05806b6975ff3c (patch)
tree071c9543fd628dd0fc9d25a5cbda9a6fe3525360
parentc9f16b6430f3b9c9d12ee078e2218e8467c13340 (diff)
0.16.90.16.9
-rw-r--r--CHANGELOG.md12
-rwxr-xr-xinstall2
-rw-r--r--man/man1/fzf-tmux.12
-rw-r--r--man/man1/fzf.12
-rw-r--r--src/constants.go2
5 files changed, 16 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ffb10fef..737064c8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,18 @@
CHANGELOG
=========
+0.16.9
+------
+- Memory and performance optimization
+ - Around 20% performance improvement for general use cases
+ - Up to 5x faster processing of `--ansi`
+ - Up to 50% reduction of memory usage
+- Bug fixes and usability improvements
+ - Fixed handling of bracketed paste mode
+ - [ERROR] on info line when the default command failed
+ - More efficient rendering of preview window
+ - `--no-clear` updated for repetitive relaunching scenarios
+
0.16.8
------
- New `change` event and `top` action for `--bind`
diff --git a/install b/install
index 40f5ec4e..8ae27227 100755
--- a/install
+++ b/install
@@ -2,7 +2,7 @@
set -u
-version=0.16.8
+version=0.16.9
auto_completion=
key_bindings=
update_config=2
diff --git a/man/man1/fzf-tmux.1 b/man/man1/fzf-tmux.1
index a9db1422..b78f54c2 100644
--- a/man/man1/fzf-tmux.1
+++ b/man/man1/fzf-tmux.1
@@ -21,7 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
..
-.TH fzf-tmux 1 "Jun 2017" "fzf 0.16.8" "fzf-tmux - open fzf in tmux split pane"
+.TH fzf-tmux 1 "Jul 2017" "fzf 0.16.9" "fzf-tmux - open fzf in tmux split pane"
.SH NAME
fzf-tmux - open fzf in tmux split pane
diff --git a/man/man1/fzf.1 b/man/man1/fzf.1
index dbd65bb0..815c144d 100644
--- a/man/man1/fzf.1
+++ b/man/man1/fzf.1
@@ -21,7 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
..
-.TH fzf 1 "Jun 2017" "fzf 0.16.8" "fzf - a command-line fuzzy finder"
+.TH fzf 1 "Jul 2017" "fzf 0.16.9" "fzf - a command-line fuzzy finder"
.SH NAME
fzf - a command-line fuzzy finder
diff --git a/src/constants.go b/src/constants.go
index 56097ffa..30d1896d 100644
--- a/src/constants.go
+++ b/src/constants.go
@@ -9,7 +9,7 @@ import (
const (
// Current version
- version = "0.16.8"
+ version = "0.16.9"
// Core
coordinatorDelayMax time.Duration = 100 * time.Millisecond