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