Skip to content
Snippets Groups Projects
Unverified Commit 976ab4b8 authored by Rodrigo Nascimento's avatar Rodrigo Nascimento
Browse files

Bump version to 0.60.0

parent b50d4ae2
No related branches found
No related tags found
No related merge requests found
FROM rocketchat/base:8
ENV RC_VERSION 0.60.0-rc.8
ENV RC_VERSION 0.60.0
MAINTAINER buildmaster@rocket.chat
......
......@@ -21,7 +21,7 @@ const pkgdef :Spk.PackageDefinition = (
appVersion = 62, # Increment this for every release.
appMarketingVersion = (defaultText = "0.60.0-rc.8"),
appMarketingVersion = (defaultText = "0.60.0"),
# Human-readable representation of appVersion. Should match the way you
# identify versions of your app in documentation and marketing.
......
......@@ -55,13 +55,13 @@ git.status()
if (status.current === 'release-candidate') {
return semver.inc(pkgJson.version, 'prerelease', 'rc');
}
if (status.current === 'master') {
if (status.current === 'release-0.60.0') {
return semver.inc(pkgJson.version, 'patch');
}
if (status.current === 'develop') {
return semver.inc(semver.inc(pkgJson.version, 'minor'), 'minor')+'-develop';
}
return Promise.reject(`No release action for branch ${ status.current }`);
return Promise.reject(`No relea se action for branch ${ status.current }`);
})
.then(nextVersion => inquirer.prompt([{
type: 'list',
......
......@@ -17,7 +17,7 @@ elif [[ $TRAVIS_TAG ]]; then
RC_VERSION=$TRAVIS_TAG
else
CHANNEL=edge
RC_VERSION=0.60.0-rc.8
RC_VERSION=0.60.0
fi
echo "Preparing to trigger a snap release for $CHANNEL channel"
......
This diff is collapsed.
{
"name": "Rocket.Chat",
"description": "The Ultimate Open Source WebChat Platform",
"version": "0.60.0-rc.8",
"version": "0.60.0",
"author": {
"name": "Rocket.Chat",
"url": "https://rocket.chat/"
......
{
"version": "0.60.0-rc.8"
"version": "0.60.0"
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment