From 35a9aff8e1caaaa18bce82e93a54b12e73c897c2 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Mon, 25 Apr 2016 01:23:52 +0900 Subject: 0.12.1 --- CHANGELOG.md | 7 +++++++ install | 4 ++-- man/man1/fzf.1 | 2 +- src/constants.go | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9483f33d..fd0515ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ CHANGELOG ========= +0.12.1 +------ + +- Ranking algorithm introduced in 0.12.0 is now universally applied +- Fixed invalid cache reference in exact mode +- Fixes and improvements in Vim plugin and shell extensions + 0.12.0 ------ diff --git a/install b/install index df69f486..6d2e886c 100755 --- a/install +++ b/install @@ -2,8 +2,8 @@ set -u -[[ "$@" =~ --pre ]] && version=0.12.0 pre=1 || - version=0.12.0 pre=0 +[[ "$@" =~ --pre ]] && version=0.12.1 pre=1 || + version=0.12.1 pre=0 auto_completion= key_bindings= diff --git a/man/man1/fzf.1 b/man/man1/fzf.1 index 649eef98..53ac3fe9 100644 --- a/man/man1/fzf.1 +++ b/man/man1/fzf.1 @@ -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 "Apr 2016" "fzf 0.12.0" "fzf - a command-line fuzzy finder" +.TH fzf 1 "Apr 2016" "fzf 0.12.1" "fzf - a command-line fuzzy finder" .SH NAME fzf - a command-line fuzzy finder diff --git a/src/constants.go b/src/constants.go index bb2af449..2e41e8be 100644 --- a/src/constants.go +++ b/src/constants.go @@ -8,7 +8,7 @@ import ( const ( // Current version - version = "0.12.0" + version = "0.12.1" // Core coordinatorDelayMax time.Duration = 100 * time.Millisecond -- cgit v1.2.3