add translations update and changelog update to bin/release.pl

This commit is contained in:
Juergen E. Fischer 2015-02-20 08:42:46 +01:00
parent 5eba57558d
commit d34eaf0759

View File

@ -77,6 +77,14 @@ my $release = "$newmajor.$newminor";
my $relbranch = "release-${newmajor}_${newminor}";
my $reltag = "final-${newmajor}_${newminor}_0";
print "Pulling transifex translations...\n");
system( "scripts/pull_ts.sh" ) == 0 or die "pull_ts.sh failed";
system( "git commit -a -m \"translation update to $release from transifex\"") == 0 or die "could not commit translation updates";
print "Updating changelog...\n");
system( "scripts/create_changelog.sh" ) == 0 or die "create_changelog.sh failed";
system( "git commit -a -m \"changelog update for $release\"") == 0 or die "could not commit changelog update";
print "Creating branch...\n";
system( "git checkout -b $relbranch" ) == 0 or die "git checkout release branch failed";
updateCMakeLists($newmajor,$newminor,$releasename);