diff --git a/CHANGELOG.md b/CHANGELOG.md index 73dbd0d..278c196 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 546e0a7..8177e7b 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 ba52f84..61933e6 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 35b49a1..05b4ef3 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 6f6898d..e859f3b 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