diff options
author | Junegunn Choi <junegunn.c@gmail.com> | 2016-03-03 01:57:28 +0900 |
---|---|---|
committer | Junegunn Choi <junegunn.c@gmail.com> | 2016-03-03 01:57:28 +0900 |
commit | b47ab633e297a64a4dacd59dea008144638d8e97 (patch) | |
tree | e9d6b2ccf2ef9285ba3217f57c23c3beb2871758 | |
parent | 09a2ab39fe4c1c57d789d8b7c6dff91e47885a71 (diff) |
0.11.40.11.4
-rw-r--r-- | CHANGELOG.md | 6 | ||||
-rwxr-xr-x | install | 4 | ||||
-rw-r--r-- | 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 ------ @@ -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 |