From f9d6b83f5e895a1557e32d780cc689067e8d05ac Mon Sep 17 00:00:00 2001
From: Junegunn Choi <junegunn.c@gmail.com>
Date: Fri, 27 Mar 2015 12:47:42 +0900
Subject: [PATCH] Drop patch number and stick with M.m.p convention

---
 src/Makefile     | 2 +-
 src/constants.go | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/Makefile b/src/Makefile
index d833ce98..2604c3ba 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -18,7 +18,7 @@ BINDIR    := ../bin
 
 BINARY32  := fzf-$(GOOS)_386
 BINARY64  := fzf-$(GOOS)_amd64
-VERSION    = $(shell fzf/$(BINARY64) --version | sed 's/-p[0-9]*//')
+VERSION    = $(shell fzf/$(BINARY64) --version)
 RELEASE32  = fzf-$(VERSION)-$(GOOS)_386
 RELEASE64  = fzf-$(VERSION)-$(GOOS)_amd64
 
diff --git a/src/constants.go b/src/constants.go
index 394a40d8..006a1bdc 100644
--- a/src/constants.go
+++ b/src/constants.go
@@ -5,7 +5,7 @@ import (
 )
 
 // Current version
-const Version = "0.9.5-p1"
+const Version = "0.9.6"
 
 // fzf events
 const (
-- 
GitLab