diff --git a/Changes b/Changes index a81bbc5..48a03c3 100644 --- a/Changes +++ b/Changes @@ -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, diff --git a/peco.go b/peco.go index f2a4f7b..7946aaa 100644 --- a/peco.go +++ b/peco.go @@ -25,7 +25,7 @@ import ( "github.com/pkg/errors" ) -const version = "v0.5.1" +const version = "v0.5.2" type errIgnorable struct { err error