pull/360/head
Junegunn Choi 9 years ago
parent 64443221aa
commit de829c0938

@ -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
------

@ -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)

@ -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

@ -8,7 +8,7 @@ import (
const (
// Current version
version = "0.10.4"
version = "0.10.5"
// Core
coordinatorDelayMax time.Duration = 100 * time.Millisecond

Loading…
Cancel
Save