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

View File

@ -1,6 +1,11 @@
CHANGELOG CHANGELOG
========= =========
0.10.8
------
- Fixed panic when trying to set colors after colors are disabled (#370)
0.10.7 0.10.7
------ ------

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
[[ "$@" =~ --pre ]] && version=0.10.7 pre=1 || [[ "$@" =~ --pre ]] && version=0.10.8 pre=1 ||
version=0.10.7 pre=0 version=0.10.8 pre=0
cd $(dirname $BASH_SOURCE) cd $(dirname $BASH_SOURCE)
fzf_base=$(pwd) 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 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE. 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 .SH NAME
fzf - a command-line fuzzy finder fzf - a command-line fuzzy finder

View File

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