summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2015-09-12 12:50:32 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2015-09-12 12:50:32 +0900
commitde829c09385c7db074001467873620117e20237a (patch)
tree7dce3b6690cdcf4c9b576d5264a8e40c8282e0b8
parent64443221aab288a3069d01cdaf86706c6c1d91f3 (diff)
0.10.5
-rw-r--r--CHANGELOG.md6
-rwxr-xr-xinstall4
-rw-r--r--man/man1/fzf.12
-rw-r--r--src/constants.go2
4 files changed, 10 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 633d264f..a337b108 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,12 @@
CHANGELOG
=========
+0.10.5
+------
+
+- `'`-prefix to unquote the term in `--extended-exact` mode
+- Backward scan when `--tiebreak=end` is set
+
0.10.4
------
diff --git a/install b/install
index b04d4d0f..9b9b04d4 100755
--- a/install
+++ b/install
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
-[[ "$@" =~ --pre ]] && version=0.10.4 pre=1 ||
- version=0.10.4 pre=0
+[[ "$@" =~ --pre ]] && version=0.10.5 pre=1 ||
+ version=0.10.5 pre=0
cd $(dirname $BASH_SOURCE)
fzf_base=$(pwd)
diff --git a/man/man1/fzf.1 b/man/man1/fzf.1
index d4ec1e7f..0b159cc8 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 "Aug 2015" "fzf 0.10.4" "fzf - a command-line fuzzy finder"
+.TH fzf 1 "Sep 2015" "fzf 0.10.5" "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 e335a571..b2225f14 100644
--- a/src/constants.go
+++ b/src/constants.go
@@ -8,7 +8,7 @@ import (
const (
// Current version
- version = "0.10.4"
+ version = "0.10.5"
// Core
coordinatorDelayMax time.Duration = 100 * time.Millisecond