mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-12-26 16:14:16 +03:00
Railcar: separate beta & stable channels by minor version
Also, remove the '.0' suffix for the '-dev' version on master
This commit is contained in:
parent
3eddcf4c52
commit
513318924f
@ -48,12 +48,12 @@ function bumpStableVersion (next) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function bumpBetaVersion (next) {
|
function bumpBetaVersion (next) {
|
||||||
var newVersion = semver.inc(getCurrentVersion(), 'prerelease', 'beta')
|
var newVersion = semver.inc(getCurrentVersion(), 'preminor', 'beta')
|
||||||
run('npm version ' + newVersion)(next)
|
run('npm version ' + newVersion)(next)
|
||||||
}
|
}
|
||||||
|
|
||||||
function bumpDevVersion (next) {
|
function bumpDevVersion (next) {
|
||||||
var newVersion = semver.inc(getCurrentVersion(), 'preminor', 'dev')
|
var newVersion = semver.inc(getCurrentVersion(), 'preminor', 'dev').replace(/\.0$/, '')
|
||||||
series([
|
series([
|
||||||
run('npm --no-git-tag-version version ' + newVersion),
|
run('npm --no-git-tag-version version ' + newVersion),
|
||||||
run('git commit -am "' + newVersion + '"')
|
run('git commit -am "' + newVersion + '"')
|
||||||
|
Loading…
Reference in New Issue
Block a user