summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2017-01-24 00:37:47 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2017-01-24 00:37:47 +0900
commitf2ce233a6dfe5d8c30a6abe527db9187790f4245 (patch)
treebc18e86475789fac249a31e7e4207507265f2384
parent6a75e30941af50a7197ef5e96c07a8605aec9a53 (diff)
0.16.20.16.2
-rw-r--r--CHANGELOG.md2
-rwxr-xr-xinstall2
-rw-r--r--src/constants.go2
3 files changed, 4 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index db5182bc..e4358226 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,11 +5,13 @@ CHANGELOG
------
- Dropped ncurses dependency
- Binaries for freebsd, openbsd, arm5, arm6, arm7, and arm8
+- Official 24-bit color support
- Added support for composite actions in `--bind`. Multiple actions can be
chained using `+` separator.
- e.g. `fzf --bind 'ctrl-y:execute(echo -n {} | pbcopy)+abort'`
- `--preview-window` with size 0 is allowed. This is used to make fzf execute
preview command in the background without displaying the result.
+- Minor bug fixes and improvements
0.16.1
------
diff --git a/install b/install
index 0ff03103..01c14abd 100755
--- a/install
+++ b/install
@@ -2,7 +2,7 @@
set -u
-version=0.16.2-alpha
+version=0.16.2
auto_completion=
key_bindings=
update_config=2
diff --git a/src/constants.go b/src/constants.go
index 082909b8..5013e031 100644
--- a/src/constants.go
+++ b/src/constants.go
@@ -8,7 +8,7 @@ import (
const (
// Current version
- version = "0.16.2-alpha"
+ version = "0.16.2"
// Core
coordinatorDelayMax time.Duration = 100 * time.Millisecond