Skip to content

Commit

Permalink
Ver.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Jul 16, 2017
1 parent 25cb83f commit e489750
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion autoload/vimproc.vim
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ endif

" Version info "{{{
let s:MAJOR_VERSION = 9
let s:MINOR_VERSION = 2
let s:MINOR_VERSION = 3
let s:VERSION_NUMBER = str2nr(printf('%2d%02d', s:MAJOR_VERSION, s:MINOR_VERSION))
let s:VERSION_STRING = printf('%d.%d', s:MAJOR_VERSION, s:MINOR_VERSION)
"}}}
Expand Down
2 changes: 1 addition & 1 deletion doc/vimproc.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
*vimproc.txt* Asynchronous execution plugin for Vim

Version: 9.2
Version: 9.3
Author : Shougo <Shougo.Matsu at gmail.com>
Original Author : Yukihiro Nakadaira <yukihiro.nakadaira at gmail.com>
License: MIT license {{{
Expand Down
2 changes: 1 addition & 1 deletion src/proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ vp_dlclose(char *args)
const char *
vp_dlversion(char *args)
{
vp_stack_push_num(&_result, "%2d%02d", 9, 2);
vp_stack_push_num(&_result, "%2d%02d", 9, 3);
return vp_stack_return(&_result);
}

Expand Down
2 changes: 1 addition & 1 deletion src/proc_w32.c
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ vp_dlclose(char *args)
const char *
vp_dlversion(char *args)
{
vp_stack_push_num(&_result, "%2d%02d", 9, 2);
vp_stack_push_num(&_result, "%2d%02d", 9, 3);
return vp_stack_return(&_result);
}

Expand Down

0 comments on commit e489750

Please sign in to comment.