summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2016-03-03 01:57:28 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2016-03-03 01:57:28 +0900
commitb47ab633e297a64a4dacd59dea008144638d8e97 (patch)
treee9d6b2ccf2ef9285ba3217f57c23c3beb2871758
parent09a2ab39fe4c1c57d789d8b7c6dff91e47885a71 (diff)
0.11.40.11.4
-rw-r--r--CHANGELOG.md6
-rwxr-xr-xinstall4
-rw-r--r--src/constants.go2
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