summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2016-08-21 05:00:27 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2016-08-21 05:02:45 +0900
commitb86838c2b088ab7c7d80b6103a5fa59d6172ce10 (patch)
tree7aa3f74156f7190f62589b6fa9247e527151dd7a
parent1f7d1f9b151131a01f661b4be70aac068db17f93 (diff)
0.13.50.13.5
-rw-r--r--CHANGELOG.md5
-rwxr-xr-xinstall4
-rw-r--r--man/man1/fzf-tmux.12
-rw-r--r--man/man1/fzf.12
-rw-r--r--src/constants.go2
-rwxr-xr-xsrc/update_assets.rb1
6 files changed, 11 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 22546f68..6feff3e4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,11 @@
CHANGELOG
=========
+0.13.5
+------
+- Memory and performance optimization
+ - Up to 2x performance with half the amount of memory
+
0.13.4
------
- Performance optimization
diff --git a/install b/install
index 6e77d52e..67447874 100755
--- a/install
+++ b/install
@@ -2,8 +2,8 @@
set -u
-[[ "$@" =~ --pre ]] && version=0.13.4 pre=1 ||
- version=0.13.4 pre=0
+[[ "$@" =~ --pre ]] && version=0.13.5 pre=1 ||
+ version=0.13.5 pre=0
auto_completion=
key_bindings=
diff --git a/man/man1/fzf-tmux.1 b/man/man1/fzf-tmux.1
index 5eabb5e7..7be73171 100644
--- a/man/man1/fzf-tmux.1
+++ b/man/man1/fzf-tmux.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-tmux 1 "Aug 2016" "fzf 0.13.4" "fzf-tmux - open fzf in tmux split pane"
+.TH fzf-tmux 1 "Aug 2016" "fzf 0.13.5" "fzf-tmux - open fzf in tmux split pane"
.SH NAME
fzf-tmux - open fzf in tmux split pane
diff --git a/man/man1/fzf.1 b/man/man1/fzf.1
index c6b2dea7..69c360f3 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 "Aug 2016" "fzf 0.13.4" "fzf - a command-line fuzzy finder"
+.TH fzf 1 "Aug 2016" "fzf 0.13.5" "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 74c59fa6..c0410863 100644
--- a/src/constants.go
+++ b/src/constants.go
@@ -8,7 +8,7 @@ import (
const (
// Current version
- version = "0.13.4"
+ version = "0.13.5"
// Core
coordinatorDelayMax time.Duration = 100 * time.Millisecond
diff --git a/src/update_assets.rb b/src/update_assets.rb
index c849f9ec..2fd9edc2 100755
--- a/src/update_assets.rb
+++ b/src/update_assets.rb
@@ -2,6 +2,7 @@
# http://www.rubydoc.info/github/rest-client/rest-client/RestClient
require 'rest_client'
+require 'json'
if ARGV.length < 3
puts "usage: #$0 <token> <version> <files...>"