Skip to content

Commit

Permalink
Merge pull request #9260 from RocketChat/develop-sync
Browse files Browse the repository at this point in the history
Develop sync - Bump version to 0.61.0-develop
  • Loading branch information
rodrigok authored Dec 27, 2017
2 parents 4039c1b + e2deea2 commit c942b0c
Show file tree
Hide file tree
Showing 8 changed files with 760 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM rocketchat/base:8

ENV RC_VERSION 0.60.0-develop
ENV RC_VERSION 0.61.0-develop

MAINTAINER [email protected]

Expand Down
2 changes: 1 addition & 1 deletion .sandstorm/sandstorm-pkgdef.capnp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const pkgdef :Spk.PackageDefinition = (

appVersion = 62, # Increment this for every release.

appMarketingVersion = (defaultText = "0.60.0-develop"),
appMarketingVersion = (defaultText = "0.61.0-develop"),
# Human-readable representation of appVersion. Should match the way you
# identify versions of your app in documentation and marketing.

Expand Down
6 changes: 3 additions & 3 deletions .scripts/set-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ git.status()
if (status.current === 'release-candidate') {
return semver.inc(pkgJson.version, 'prerelease', 'rc');
}
if (status.current === 'master') {
if (/release-\d+\.\d+\.\d+/.test(status.current)) {
return semver.inc(pkgJson.version, 'patch');
}
if (status.current === 'develop') {
return semver.inc(semver.inc(pkgJson.version, 'minor'), 'minor')+'-develop';
if (status.current === 'develop-sync') {
return semver.inc(pkgJson.version, 'minor') + '-develop';
}
return Promise.reject(`No release action for branch ${ status.current }`);
})
Expand Down
2 changes: 1 addition & 1 deletion .travis/snap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ elif [[ $TRAVIS_TAG ]]; then
RC_VERSION=$TRAVIS_TAG
else
CHANNEL=edge
RC_VERSION=0.60.0-develop
RC_VERSION=0.61.0-develop
fi

echo "Preparing to trigger a snap release for $CHANNEL channel"
Expand Down
745 changes: 745 additions & 0 deletions HISTORY.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Rocket.Chat",
"description": "The Ultimate Open Source WebChat Platform",
"version": "0.60.0-develop",
"version": "0.61.0-develop",
"author": {
"name": "Rocket.Chat",
"url": "https://rocket.chat/"
Expand Down
2 changes: 1 addition & 1 deletion packages/rocketchat-lib/rocketchat.info
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "0.60.0-develop"
"version": "0.61.0-develop"
}
7 changes: 7 additions & 0 deletions packages/rocketchat-livechat/app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c942b0c

Please sign in to comment.