aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-08-22 00:23:48 -0400
committerJustin M. Keyes <justinkz@gmail.com>2016-08-22 00:28:47 -0400
commitad4348095229e055750fb429f2c675393711b647 (patch)
tree3f3f153073d76a6629bdd271ce2ddc29ffb337ab
parent5b8255e251e121b814826d127a383bf3054cac80 (diff)
downloadrneovim-ad4348095229e055750fb429f2c675393711b647.tar.gz
rneovim-ad4348095229e055750fb429f2c675393711b647.tar.bz2
rneovim-ad4348095229e055750fb429f2c675393711b647.zip
version bump
-rw-r--r--CMakeLists.txt4
-rw-r--r--runtime/doc/eval.txt3
-rwxr-xr-xscripts/release.sh2
3 files changed, 4 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 4767d16762..cb044d521c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -59,8 +59,8 @@ set_property(CACHE CMAKE_BUILD_TYPE PROPERTY
# version string, else it is combined with the result of `git describe`.
set(NVIM_VERSION_MAJOR 0)
set(NVIM_VERSION_MINOR 1)
-set(NVIM_VERSION_PATCH 5)
-set(NVIM_VERSION_PRERELEASE "") # for package maintainers
+set(NVIM_VERSION_PATCH 6)
+set(NVIM_VERSION_PRERELEASE "-dev") # for package maintainers
file(TO_CMAKE_PATH ${CMAKE_CURRENT_LIST_DIR}/.git FORCED_GIT_DIR)
include(GetGitRevisionDescription)
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 41373c135d..03d8f84aa6 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -5664,8 +5664,7 @@ rpcstart({prog}[, {argv}]) {Nvim} *rpcstart()*
Deprecated. Replace >
:let id = rpcstart('prog', ['arg1', 'arg2'])
< with >
- :let id = jobstart(['prog', 'arg1', 'arg2'],
- {'rpc': v:true})
+ :let id = jobstart(['prog', 'arg1', 'arg2'], {'rpc': v:true})
rpcstop({channel}) {Nvim} *rpcstop()*
Closes an |RPC| {channel}. If the channel is a job
diff --git a/scripts/release.sh b/scripts/release.sh
index 67738ccc96..41a246c041 100755
--- a/scripts/release.sh
+++ b/scripts/release.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/usr/bin/env bash
# Performs steps to tag a release.
#