mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-02 22:10:06 +08:00
Update version: 0.9.0-dev (#1842)
* New version 0.9.0-dev * Update release script
This commit is contained in:
parent
7a91d3bc2f
commit
e76540e0fc
@ -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
|
||||
|
@ -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)
|
||||
|
@ -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")
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
""
|
||||
|
@ -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)
|
||||
|
@ -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 ~
|
||||
|
||||
|
@ -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/ "
|
||||
}
|
||||
|
||||
# }}}
|
||||
|
@ -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)
|
||||
|
@ -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 ~
|
||||
|
||||
|
@ -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 "
|
||||
}
|
||||
|
||||
# }}}
|
||||
|
Loading…
Reference in New Issue
Block a user