This commit is contained in:
Junegunn Choi
2015-10-09 12:41:29 +09:00
parent 7d53051ec8
commit b3010a4624
4 changed files with 9 additions and 4 deletions
+5
View File
@@ -1,6 +1,11 @@
CHANGELOG
=========
0.10.8
------
- Fixed panic when trying to set colors after colors are disabled (#370)
0.10.7
------
+2 -2
View File
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
[[ "$@" =~ --pre ]] && version=0.10.7 pre=1 ||
version=0.10.7 pre=0
[[ "$@" =~ --pre ]] && version=0.10.8 pre=1 ||
version=0.10.8 pre=0
cd $(dirname $BASH_SOURCE)
fzf_base=$(pwd)
+1 -1
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 "Oct 2015" "fzf 0.10.7" "fzf - a command-line fuzzy finder"
.TH fzf 1 "Oct 2015" "fzf 0.10.8" "fzf - a command-line fuzzy finder"
.SH NAME
fzf - a command-line fuzzy finder
+1 -1
View File
@@ -8,7 +8,7 @@ import (
const (
// Current version
version = "0.10.7"
version = "0.10.8"
// Core
coordinatorDelayMax time.Duration = 100 * time.Millisecond