This commit is contained in:
Junegunn Choi 2015-08-29 02:36:27 +09:00
parent 90b0cd44ac
commit 9a2d9ad947
4 changed files with 9 additions and 4 deletions

View File

@ -1,6 +1,11 @@
CHANGELOG
=========
0.10.4
------
- Fixed to remove ANSI code from output when `--with-nth` is set
0.10.3
------

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
[[ "$@" =~ --pre ]] && version=0.10.3 pre=1 ||
version=0.10.3 pre=0
[[ "$@" =~ --pre ]] && version=0.10.4 pre=1 ||
version=0.10.4 pre=0
cd $(dirname $BASH_SOURCE)
fzf_base=$(pwd)

View File

@ -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.3" "fzf - a command-line fuzzy finder"
.TH fzf 1 "Aug 2015" "fzf 0.10.4" "fzf - a command-line fuzzy finder"
.SH NAME
fzf - a command-line fuzzy finder

View File

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