summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2016-02-07 10:56:29 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2016-02-07 11:00:10 +0900
commit40d934e378ec2072c9d807f7ca1fca73bda1d13d (patch)
treef624a24cbcf1929409d9a1008436018a17ac2340
parente95d82748fc8fe5a05d93b30388ba37adb7dbac8 (diff)
0.11.30.11.3
-rw-r--r--CHANGELOG.md10
-rwxr-xr-xinstall4
-rw-r--r--man/man1/fzf.12
-rw-r--r--shell/completion.bash4
-rw-r--r--src/constants.go2
5 files changed, 16 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 73dbd0da..278c1969 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,16 @@
CHANGELOG
=========
+0.11.3
+------
+
+- Graceful exit on SIGTERM (#482)
+- `$SHELL` instead of `sh` for `execute` action and `$FZF_DEFAULT_COMMAND` (#481)
+- Changes in fuzzy completion API
+ - [`_fzf_compgen_{path,dir}`](https://github.com/junegunn/fzf/commit/9617647)
+ - [`_fzf_complete_COMMAND_post`](https://github.com/junegunn/fzf/commit/8206746)
+ for post-processing
+
0.11.2
------
diff --git a/install b/install
index 546e0a7c..8177e7b4 100755
--- a/install
+++ b/install
@@ -2,8 +2,8 @@
set -u
-[[ "$@" =~ --pre ]] && version=0.11.2 pre=1 ||
- version=0.11.2 pre=0
+[[ "$@" =~ --pre ]] && version=0.11.3 pre=1 ||
+ version=0.11.3 pre=0
auto_completion=
key_bindings=
diff --git a/man/man1/fzf.1 b/man/man1/fzf.1
index ba52f84c..61933e6a 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 2016" "fzf 0.11.2" "fzf - a command-line fuzzy finder"
+.TH fzf 1 "Feb 2016" "fzf 0.11.3" "fzf - a command-line fuzzy finder"
.SH NAME
fzf - a command-line fuzzy finder
diff --git a/shell/completion.bash b/shell/completion.bash
index 35b49a1e..05b4ef30 100644
--- a/shell/completion.bash
+++ b/shell/completion.bash
@@ -260,11 +260,11 @@ a_cmds="
x_cmds="kill ssh telnet unset unalias export"
# Preserve existing completion
-if [ "$_fzf_completion_loaded" != '0.10.8' ]; then
+if [ "$_fzf_completion_loaded" != '0.11.3' ]; then
# Really wish I could use associative array but OSX comes with bash 3.2 :(
eval $(complete | \grep '\-F' | \grep -v _fzf_ |
\grep -E " ($(echo $d_cmds $a_cmds $x_cmds | sed 's/ /|/g' | sed 's/+/\\+/g'))$" | _fzf_orig_completion_filter)
- export _fzf_completion_loaded=0.10.8
+ export _fzf_completion_loaded=0.11.3
fi
if type _completion_loader > /dev/null 2>&1; then
diff --git a/src/constants.go b/src/constants.go
index 6f6898d5..e859f3bc 100644
--- a/src/constants.go
+++ b/src/constants.go
@@ -8,7 +8,7 @@ import (
const (
// Current version
- version = "0.11.2"
+ version = "0.11.3"
// Core
coordinatorDelayMax time.Duration = 100 * time.Millisecond