Skip to content

Commit

Permalink
Fix versions and add build number to develop build
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigok committed May 11, 2017
1 parent 10dc2c5 commit f8c8633
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 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:4

ENV RC_VERSION 0.56.0-develop
ENV RC_VERSION 0.57.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.56.0-develop"),
appMarketingVersion = (defaultText = "0.57.0-develop"),
# Human-readable representation of appVersion. Should match the way you
# identify versions of your app in documentation and marketing.

Expand Down
7 changes: 6 additions & 1 deletion .travis/setartname.sh
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
export ARTIFACT_NAME="$(meteor npm run version --silent)"
if [[ $TRAVIS_BRANCH ]]
then
export ARTIFACT_NAME="$(meteor npm run version --silent).$TRAVIS_BUILD_NUMBER"
else
export ARTIFACT_NAME="$(meteor npm run version --silent)"
fi
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.56.0-develop
RC_VERSION=0.57.0-develop
fi

echo "Preparing to trigger a snap release for $CHANNEL channel"
Expand Down
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.56.0-develop",
"version": "0.57.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.56.0-develop"
"version": "0.57.0-develop"
}

0 comments on commit f8c8633

Please sign in to comment.