Skip to content

Commit

Permalink
don't use prerelease version
Browse files Browse the repository at this point in the history
  • Loading branch information
tomstaijen committed Nov 17, 2016
1 parent 1c54c2e commit 2952223
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ var isMasterBranch = System.String.Equals("master", branchName, System.StringCom
// VERSION
///////////////////////////////////////////////////////////////////////////////

var version = "0.1.1-pre";
var version = "0.1.1";
var semVersion = local ? version : (version + string.Concat("+", buildNumber));

Console.WriteLine(semVersion);
Expand Down Expand Up @@ -125,8 +125,9 @@ Task("Update-AppVeyor-Build-Number")


Task("AppVeyor")
.IsDependentOn("Publish")
.IsDependentOn("Update-AppVeyor-Build-Number");
.IsDependentOn("Update-AppVeyor-Build-Number")
.IsDependentOn("Publish");


///////////////////////////////////////////////////////////////////////////////
// EXECUTION
Expand Down

0 comments on commit 2952223

Please sign in to comment.