version++; this be v0.5.2

This commit is contained in:
Daisuke Maki 2017-12-08 10:13:17 +09:00
parent 47e1fb3c3b
commit bdb30f5fb7
2 changed files with 16 additions and 1 deletions

15
Changes
View file

@ -1,6 +1,21 @@
Changes
=======
v0.5.2 - 08 Dec 2017
Backwards Incompatible Change:
* --version flag now prints out the Go version used to build the binary
Micellaneous:
* Various doc fixes
* Build peco using go1.9.2.
* There have apparently been problems running the stock peco binary in
MacOS High Sierra, with an error message like "failed MSpanList_Insert...",
which can averted by compiling the binary with a newer Go.
Reports suggest that peco v0.5.1 is not affected by this problem, but
we're making this release anyway just to make sure that we're building
on a new-ish Go, and that users have a way to see what Go version was
used to build their binaries
v0.5.1 - 17 Mar 2017
Bugs/Fixes
* When --exec is used, and you come back from the external command,

View file

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