summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2015-06-03 02:09:07 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2015-06-03 02:09:07 +0900
commit52771a6226188ec20f2c1bdc481e5c15ac4d119a (patch)
tree02fcda4782d32baf80ee1e94771a0443f05b5a4f
parentb00bcf506e0554b918e7aa75842277bc9a65dda8 (diff)
0.9.130.9.13
-rw-r--r--CHANGELOG.md12
-rwxr-xr-xinstall2
-rw-r--r--man/man1/fzf.12
-rw-r--r--src/constants.go2
4 files changed, 15 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9bc55d52..276ee19e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,18 @@
CHANGELOG
=========
+0.9.13
+------
+
+### New features
+
+- Color customization with the extended `--color` option
+
+### Bug fixes
+
+- Fixed premature termination of Reader in the presence of a long line which
+ is longer than 64KB
+
0.9.12
------
diff --git a/install b/install
index 96e82b41..1b8d21bd 100755
--- a/install
+++ b/install
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
-version=0.9.12
+version=0.9.13
cd $(dirname $BASH_SOURCE)
fzf_base=$(pwd)
diff --git a/man/man1/fzf.1 b/man/man1/fzf.1
index 9f652e0c..733d767c 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 "May 2015" "fzf 0.9.12" "fzf - a command-line fuzzy finder"
+.TH fzf 1 "June 2015" "fzf 0.9.13" "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 b0710af7..20f4bf8c 100644
--- a/src/constants.go
+++ b/src/constants.go
@@ -8,7 +8,7 @@ import (
const (
// Current version
- Version = "0.9.12"
+ Version = "0.9.13"
// Core
coordinatorDelayMax time.Duration = 100 * time.Millisecond