Update Changes; version++

This commit is contained in:
Daisuke Maki 2023-03-21 16:31:07 +09:00
parent 7352294fa4
commit 46703dc3aa
2 changed files with 19 additions and 1 deletions

18
Changes
View file

@ -1,6 +1,24 @@
Changes
=======
v0.5.11 - 21 Mar 2023
[Features]
* Added new option for "FuzzyLongestSort" flag that can be specified in your config file
as
```
{
"FuzzyLongestSort": true,
...
}
```
allows you to sort matched lines with the following ordering precedence (#539):
1. longer substring
2. earlier (left positioned) substring, and
3. shorter line.
[Miscellaneous]
* Posted project status at https://github.com/peco/peco/discussions/540
v0.5.10 - 08 Jun 2021
* Previous release was botched. No code change except for version string,
and Makefile typo.

View file

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