diff --git a/.SpaceVim.d/autoload/SpaceVim/dev/releases.vim b/.SpaceVim.d/autoload/SpaceVim/dev/releases.vim index 52a21c438..70b5796f1 100644 --- a/.SpaceVim.d/autoload/SpaceVim/dev/releases.vim +++ b/.SpaceVim.d/autoload/SpaceVim/dev/releases.vim @@ -13,9 +13,9 @@ " v0.7.0 is released at https://github.com/SpaceVim/SpaceVim/pull/1610 " v0.8.0 is released at https://github.com/SpaceVim/SpaceVim/pull/1814 -let s:last_release_number = 1610 -let s:current_release_number = 1814 -let s:unmerged_prs_since_last_release = [] +let s:last_release_number = 1841 +let s:current_release_number = 1841 +let s:unmerged_prs_since_last_release = [1306, 1697, 1725, 1777, 1786, 1802, 1833, 1838] let s:unmerged_prs_since_current_release = [] " the logic should be from last_release_number to current_release_number, @@ -54,7 +54,20 @@ function! s:get_list_of_PRs() abort let prs = [] for i in range(1, 10) let issues = s:list_closed_prs('SpaceVim','SpaceVim', i) - call extend(prs, filter(issues, "v:val['number'] > 1610 && v:val['number'] < 1814")) + call extend(prs, + \ filter(issues, + \ "v:val['number'] > " + \ . s:last_release_number + \ . " && v:val['number'] < " + \ . s:current_release_number + \ . " && index(s:unmerged_prs_since_current_release, v:val['number']) == -1 " + \ )) + endfor + for i in s:unmerged_prs_since_last_release + let pr = github#api#issues#Get_issue('SpaceVim', 'SpaceVim', i) + if get(pr, 'state', '') ==# 'closed' + call add(prs, pr) + endif endfor return filter(prs, "has_key(v:val, 'pull_request')") endfunction diff --git a/README.cn.md b/README.cn.md index 74e30f39c..45d3c6812 100644 --- a/README.cn.md +++ b/README.cn.md @@ -1,7 +1,7 @@ [![SpaceVim](docs/logo.png)](https://spacevim.org/cn/) [![Build Status](https://travis-ci.org/SpaceVim/SpaceVim.svg?branch=dev)](https://travis-ci.org/SpaceVim/SpaceVim) -![Version](https://img.shields.io/badge/version-0.8.0--dev-FF69B4.svg) +![Version](https://img.shields.io/badge/version-0.9.0--dev-FF69B4.svg) [![GPLv3 License](https://img.shields.io/badge/license-GPLv3-blue.svg)](https://github.com/SpaceVim/SpaceVim/blob/master/LICENSE) [![Doc](https://img.shields.io/badge/doc-%3Ah%20SpaceVim-orange.svg?style=flat-square)](https://github.com/SpaceVim/SpaceVim/blob/master/doc/SpaceVim.txt) [![QQ](https://img.shields.io/badge/QQ群-121056965-blue.svg)](https://jq.qq.com/?_wv=1027&k=43DB6SG) diff --git a/README.md b/README.md index 602d1d326..e38f4b8db 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ [![Build Status](https://travis-ci.org/SpaceVim/SpaceVim.svg?branch=master)](https://travis-ci.org/SpaceVim/SpaceVim) [![Build status](https://ci.appveyor.com/api/projects/status/eh3t5oph70abp665/branch/master?svg=true)](https://ci.appveyor.com/project/wsdjeg/spacevim/branch/master) [![codecov](https://codecov.io/gh/SpaceVim/SpaceVim/branch/master/graph/badge.svg)](https://codecov.io/gh/SpaceVim/SpaceVim/branch/master) -![Version](https://img.shields.io/badge/version-0.8.0-FF69B4.svg) +![Version](https://img.shields.io/badge/version-0.9.0--dev-FF69B4.svg) [![GPLv3 License](https://img.shields.io/badge/license-GPLv3-blue.svg)](LICENSE) [![Doc](https://img.shields.io/badge/doc-%3Ah%20SpaceVim-orange.svg)](doc/SpaceVim.txt) [![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/SpaceVim/SpaceVim.svg)](http://isitmaintained.com/project/SpaceVim/SpaceVim "Average time to resolve an issue") diff --git a/appveyor.yml b/appveyor.yml index ba189116a..e2cdc3c76 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 0.8.0.{build} +version: 0.9.0-dev.{build} pull_requests: do_not_increment_build_number: true skip_tags: true diff --git a/autoload/SpaceVim.vim b/autoload/SpaceVim.vim index c114d8ab7..06a8b665a 100644 --- a/autoload/SpaceVim.vim +++ b/autoload/SpaceVim.vim @@ -43,7 +43,7 @@ scriptencoding utf-8 "" " Version of SpaceVim , this value can not be changed. -let g:spacevim_version = '0.8.0' +let g:spacevim_version = '0.9.0-dev' lockvar g:spacevim_version "" diff --git a/docs/cn/index.md b/docs/cn/index.md index 1ae935374..c74cf07e1 100644 --- a/docs/cn/index.md +++ b/docs/cn/index.md @@ -8,7 +8,7 @@ lang: cn [![Build Status](https://travis-ci.org/SpaceVim/SpaceVim.svg?branch=dev)](https://travis-ci.org/SpaceVim/SpaceVim) [![Build status](https://ci.appveyor.com/api/projects/status/eh3t5oph70abp665/branch/dev?svg=true)](https://ci.appveyor.com/project/wsdjeg/spacevim/branch/master) [![codecov](https://codecov.io/gh/SpaceVim/SpaceVim/branch/dev/graph/badge.svg)](https://codecov.io/gh/SpaceVim/SpaceVim/branch/master) -[![Version](https://img.shields.io/badge/version-0.8.0--dev-FF69B4.svg)](https://github.com/SpaceVim/SpaceVim/releases) +[![Version](https://img.shields.io/badge/version-0.9.0--dev-FF69B4.svg)](https://github.com/SpaceVim/SpaceVim/releases) [![GPLv3 License](https://img.shields.io/badge/license-GPLv3-blue.svg)](https://github.com/SpaceVim/SpaceVim/blob/master/LICENSE) ![welcome-page](https://user-images.githubusercontent.com/13142418/37595020-273b5bca-2bb2-11e8-8aba-638ed5f1c7ea.png) diff --git a/docs/cn/install.cmd b/docs/cn/install.cmd index f56277c88..e6712ba41 100644 --- a/docs/cn/install.cmd +++ b/docs/cn/install.cmd @@ -11,7 +11,7 @@ echo " \______/| ##____/ \_______/\_______/\_______/ \_/ |__|__/ |__/ echo " | ## " echo " | ## " echo " |__/ " -echo " 版本 : 0.8.0 中文官网 : https://spacevim.org/cn/ " +echo " 版本 : 0.9.0-dev 中文官网 : https://spacevim.org/cn/ " Push-Location ~ diff --git a/docs/cn/install.sh b/docs/cn/install.sh index 942825492..fb26d37dd 100755 --- a/docs/cn/install.sh +++ b/docs/cn/install.sh @@ -84,7 +84,7 @@ On_IWhite='\033[0;107m' # White # }}} # version -Version='0.8.0' +Version='0.9.0-dev' #System name System="$(uname -s)" @@ -335,7 +335,7 @@ welcome () { echo_with_color ${Yellow} " | ## " echo_with_color ${Yellow} " | ## " echo_with_color ${Yellow} " |__/ " - echo_with_color ${Yellow} " 版本 : 0.8.0 中文官网 : https://spacevim.org/cn/ " + echo_with_color ${Yellow} " 版本 : 0.9.0-dev 中文官网 : https://spacevim.org/cn/ " } # }}} diff --git a/docs/index.md b/docs/index.md index 568d66b0f..ae673154f 100644 --- a/docs/index.md +++ b/docs/index.md @@ -7,7 +7,7 @@ description: "SpaceVim is a community-driven vim distribution that seeks to prov [![Build Status](https://travis-ci.org/SpaceVim/SpaceVim.svg?branch=dev)](https://travis-ci.org/SpaceVim/SpaceVim) [![Build status](https://ci.appveyor.com/api/projects/status/eh3t5oph70abp665/branch/dev?svg=true)](https://ci.appveyor.com/project/wsdjeg/spacevim/branch/master) [![codecov](https://codecov.io/gh/SpaceVim/SpaceVim/branch/dev/graph/badge.svg)](https://codecov.io/gh/SpaceVim/SpaceVim/branch/master) -[![Version](https://img.shields.io/badge/version-0.8.0--dev-FF69B4.svg)](https://github.com/SpaceVim/SpaceVim/releases) +[![Version](https://img.shields.io/badge/version-0.9.0--dev-FF69B4.svg)](https://github.com/SpaceVim/SpaceVim/releases) [![GPLv3 License](https://img.shields.io/badge/license-GPLv3-blue.svg)](https://github.com/SpaceVim/SpaceVim/blob/master/LICENSE) ![welcome-page](https://user-images.githubusercontent.com/13142418/37595020-273b5bca-2bb2-11e8-8aba-638ed5f1c7ea.png) diff --git a/docs/install.cmd b/docs/install.cmd index c6bffabb7..cde34a7f5 100644 --- a/docs/install.cmd +++ b/docs/install.cmd @@ -11,7 +11,7 @@ echo " \______/| ##____/ \_______/\_______/\_______/ \_/ |__|__/ |__/ echo " | ## " echo " | ## " echo " |__/ " -echo " version : 0.8.0 by : spacevim.org " +echo " version : 0.9.0-dev by : spacevim.org " Push-Location ~ diff --git a/docs/install.sh b/docs/install.sh index a530561b6..89385665a 100755 --- a/docs/install.sh +++ b/docs/install.sh @@ -84,7 +84,7 @@ On_IWhite='\033[0;107m' # White # }}} # version -Version='0.8.0' +Version='0.9.0-dev' #System name System="$(uname -s)" @@ -330,7 +330,7 @@ welcome () { echo_with_color ${Yellow} " | ## " echo_with_color ${Yellow} " | ## " echo_with_color ${Yellow} " |__/ " - echo_with_color ${Yellow} " version : 0.8.0 by : spacevim.org " + echo_with_color ${Yellow} " version : 0.9.0-dev by : spacevim.org " } # }}}