summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2017-01-16 12:12:59 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2017-01-16 12:27:40 +0900
commit62ab8ece5edb5e7e2d36ffd24d0e32071c863cdc (patch)
tree02a607fb5cc1135e59474b761b55b9e41f85107a
parent8e2e63f9b9e7fb2a9f4c58ebc18c5d8a0b4924fe (diff)
0.16.10.16.1
-rw-r--r--CHANGELOG.md7
-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, 11 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d46df325..473f899f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,13 @@
CHANGELOG
=========
+0.16.1
+------
+- Fixed `--height` option to properly fill the window with the background
+ color
+- Added `half-page-up` and `half-page-down` actions
+- Added `-L` flag to the default find command
+
0.16.0
------
- *Added `--height HEIGHT[%]` option*
diff --git a/install b/install
index 3c338fb7..baa7870f 100755
--- a/install
+++ b/install
@@ -2,7 +2,7 @@
set -u
-version=0.16.0
+version=0.16.1
auto_completion=
key_bindings=
update_config=2
diff --git a/man/man1/fzf-tmux.1 b/man/man1/fzf-tmux.1
index 6ccdb660..dd5c0967 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 "Jan 2017" "fzf 0.16.0" "fzf-tmux - open fzf in tmux split pane"
+.TH fzf-tmux 1 "Jan 2017" "fzf 0.16.1" "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 0225c8ea..5160d6b3 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 "Jan 2017" "fzf 0.16.0" "fzf - a command-line fuzzy finder"
+.TH fzf 1 "Jan 2017" "fzf 0.16.1" "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 1abc9b96..0faa7da1 100644
--- a/src/constants.go
+++ b/src/constants.go
@@ -8,7 +8,7 @@ import (
const (
// Current version
- version = "0.16.0"
+ version = "0.16.1"
// Core
coordinatorDelayMax time.Duration = 100 * time.Millisecond