This commit is contained in:
Junegunn Choi 2016-11-09 12:41:46 +09:00
parent 7ce427ff47
commit a2beb159f1
No known key found for this signature in database
GPG Key ID: 254BC280FEF9C627
5 changed files with 9 additions and 5 deletions

View File

@ -1,6 +1,10 @@
CHANGELOG
=========
0.15.7
------
- Fixed panic when color is disabled and header lines contain ANSI colors
0.15.6
------
- Windows binaries! (@kelleyma49)

View File

@ -2,8 +2,8 @@
set -u
[[ "$@" =~ --pre ]] && version=0.15.6 pre=1 ||
version=0.15.6 pre=0
[[ "$@" =~ --pre ]] && version=0.15.7 pre=1 ||
version=0.15.7 pre=0
auto_completion=
key_bindings=

View File

@ -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 "Nov 2016" "fzf 0.15.6" "fzf-tmux - open fzf in tmux split pane"
.TH fzf-tmux 1 "Nov 2016" "fzf 0.15.7" "fzf-tmux - open fzf in tmux split pane"
.SH NAME
fzf-tmux - open fzf in tmux split pane

View File

@ -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 "Nov 2016" "fzf 0.15.6" "fzf - a command-line fuzzy finder"
.TH fzf 1 "Nov 2016" "fzf 0.15.7" "fzf - a command-line fuzzy finder"
.SH NAME
fzf - a command-line fuzzy finder

View File

@ -8,7 +8,7 @@ import (
const (
// Current version
version = "0.15.6"
version = "0.15.7"
// Core
coordinatorDelayMax time.Duration = 100 * time.Millisecond