diff --git a/CHANGELOG.md b/CHANGELOG.md index 90357cc..219123f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ CHANGELOG ========= +0.16.11 +------- +- Performance optimization +- Fixed missing preview update + 0.16.10 ------- - Fixed invalid handling of ANSI colors in preview window diff --git a/install b/install index 79a1888..b7929e4 100755 --- a/install +++ b/install @@ -2,7 +2,7 @@ set -u -version=0.16.10 +version=0.16.11 auto_completion= key_bindings= update_config=2 diff --git a/man/man1/fzf-tmux.1 b/man/man1/fzf-tmux.1 index 2c12cdf..3213c2a 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 "Jul 2017" "fzf 0.16.10" "fzf-tmux - open fzf in tmux split pane" +.TH fzf-tmux 1 "Aug 2017" "fzf 0.16.11" "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 514a00c..2b32d38 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 "Jul 2017" "fzf 0.16.10" "fzf - a command-line fuzzy finder" +.TH fzf 1 "Aug 2017" "fzf 0.16.11" "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 9b71c52..10df1e7 100644 --- a/src/constants.go +++ b/src/constants.go @@ -9,7 +9,7 @@ import ( const ( // Current version - version = "0.16.10" + version = "0.16.11" // Core coordinatorDelayMax time.Duration = 100 * time.Millisecond