Skip to content

Commit

Permalink
Version 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jalvesaq committed Feb 29, 2016
1 parent 91bfa13 commit f1b3cf4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@


PLUGINHOME=`pwd`
PLUGINVERSION=0.9.0
PLUGINVERSION=0.9.1
DEBIANTIME=`date -R`
PLUGINRELEASEDATE=`date +"%Y-%m-%d"`
VIM2HTML=/usr/local/share/vim/vim74/doc/vim2html.pl
Expand Down
8 changes: 4 additions & 4 deletions R/common_global.vim
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,7 @@ function StartR(whatr)
let start_options += ['setwd("' . rwd . '")']
endif
endif
let start_options += ['if(utils::packageVersion("nvimcom") != "0.9.9") warning("Your version of Nvim-R requires nvimcom-0.9-9.", call. = FALSE)']
let start_options += ['if(utils::packageVersion("nvimcom") != "0.9.10") warning("Your version of Nvim-R requires nvimcom-0.9-10.", call. = FALSE)']
call writefile(start_options, g:rplugin_tmpdir . "/start_options.R")

if g:R_in_buffer
Expand Down Expand Up @@ -771,8 +771,8 @@ function WaitNvimcomStart()
let g:rplugin_nvimcom_port = vr[2]
let g:rplugin_r_pid = vr[3]
let $RCONSOLE = vr[4]
if nvimcom_version != "0.9.9"
call RWarningMsg('This version of Nvim-R requires nvimcom 0.9-9.')
if nvimcom_version != "0.9.10"
call RWarningMsg('This version of Nvim-R requires nvimcom 0.9-10.')
sleep 1
endif
if isdirectory(nvimcom_home . "/bin/x64")
Expand Down Expand Up @@ -2895,7 +2895,7 @@ let g:rplugin_lastev = ""
let g:rplugin_nvimcom_bin_dir = ""
if filereadable(g:rplugin_compldir . "/nvimcom_bin_dir")
let s:filelines = readfile(g:rplugin_compldir . "/nvimcom_bin_dir")
if len(s:filelines) == 2 && s:filelines[0] == "0.9.9"
if len(s:filelines) == 2 && s:filelines[0] == "0.9.10"
let g:rplugin_nvimcom_bin_dir = s:filelines[1]
endif
unlet s:filelines
Expand Down
4 changes: 2 additions & 2 deletions doc/Nvim-R.txt
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ Before installing the plugin, you should install its dependencies:

R >= 3.0.0: http://www.r-project.org/

nvimcom 0.9-9: https://github.com/jalvesaq/nvimcom/releases
nvimcom 0.9-10: https://github.com/jalvesaq/nvimcom/releases

Additional dependencies for editing Rnoweb documents:~

Expand Down Expand Up @@ -2647,7 +2647,7 @@ step-by-step procedure to run Nvim-R remotely:
10. News~


0.9.1 (2016-02-27)
0.9.1 (2016-02-28)

* New option: R_close_term.
* Delete option: R_restart.
Expand Down

0 comments on commit f1b3cf4

Please sign in to comment.