From b47ab633e297a64a4dacd59dea008144638d8e97 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Thu, 3 Mar 2016 01:57:28 +0900 Subject: 0.11.4 --- CHANGELOG.md | 6 ++++++ install | 4 ++-- src/constants.go | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 278c1969..692d836f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ CHANGELOG ========= +0.11.4 +------ + +- Added `--hscroll-off=COL` option (default: 10) (#513) +- Some fixes in Vim plugin and shell extensions + 0.11.3 ------ diff --git a/install b/install index 225d4936..8eaf6f73 100755 --- a/install +++ b/install @@ -2,8 +2,8 @@ set -u -[[ "$@" =~ --pre ]] && version=0.11.3 pre=1 || - version=0.11.3 pre=0 +[[ "$@" =~ --pre ]] && version=0.11.4 pre=1 || + version=0.11.4 pre=0 auto_completion= key_bindings= diff --git a/src/constants.go b/src/constants.go index e859f3bc..08324207 100644 --- a/src/constants.go +++ b/src/constants.go @@ -8,7 +8,7 @@ import ( const ( // Current version - version = "0.11.3" + version = "0.11.4" // Core coordinatorDelayMax time.Duration = 100 * time.Millisecond -- cgit v1.2.3