Skip to content

Commit

Permalink
Additional output for prepare-platform-release-branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher J. Brody committed Aug 1, 2018
1 parent 7b54e27 commit aefb169
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/platform-release.js
Original file line number Diff line number Diff line change
Expand Up @@ -228,13 +228,15 @@ exports.prepareReleaseBranchCommand = function * () {
yield executil.execHelper(executil.ARGS('git checkout -b ' + branchName));
}

print(repo.repoName + ': Update JS snapshot version for VERSION "' + version + '" on branch "' + branchName + '".');
yield updateJsSnapshot(repo, version, true);

print(repo.repoName + ': Setting VERSION to "' + version + '" on branch "' + branchName + '".');
yield versionutil.updateRepoVersion(repo, version);

if (platform === 'ios') {
// Updates version in CDVAvailability.h file
print(repo.repoName + ': Update CDVAvailability.h for VERSION to "' + version + '" on branch "' + branchName + '".');
yield updateCDVAvailabilityFile(version);
// Git commit changes
if (yield gitutil.pendingChangesExist()) {
Expand Down

0 comments on commit aefb169

Please sign in to comment.