This be v0.5.7

This commit is contained in:
Daisuke Maki 2020-01-10 12:45:00 +09:00
parent b749b6191b
commit 1b1d197911
2 changed files with 9 additions and 1 deletions

View file

@ -1,6 +1,14 @@
Changes
=======
v0.5.7 - 10 Jan 2020
Bugs/Fixes:
* Code introduced in v0.5.5 introduced a bug where if the input is coming
from standard input and is possibly infinite, the user would see the
query being "stuck" after the first character is entered.
If peco was applied on a finite set of data, this did not manifest itself.
(#494 fixed by #495)
v0.5.6 - 07 Jan 2020
Miscellaneous:
* I completely messed up the release process. Retagging and uploading

View file

@ -28,7 +28,7 @@ import (
"github.com/pkg/errors"
)
const version = "v0.5.6"
const version = "v0.5.7"
type errIgnorable struct {
err error