Skip to content

Commit

Permalink
Changes to build numbering
Browse files Browse the repository at this point in the history
  • Loading branch information
robertcoltheart committed Feb 9, 2021
1 parent fe3c58c commit 745ff75
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion GitVersion.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mode: ContinuousDelivery
next-version: 1.1.0
next-version: 1.1.0-beta.1
commit-message-incrementing: Disabled
legacy-semver-padding: 0
branches:
Expand Down
4 changes: 2 additions & 2 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ Task("Versioning")
OutputType = GitVersionOutput.Json
});
version = result.NuGetVersion;
versionNumber = result.MajorMinorPatch;
version = result.SemVer;
versionNumber = result.AssemblySemVer;
});

Task("Build")
Expand Down

2 comments on commit 745ff75

@mikeblakeuk
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any news on when this will be on NuGet? should it be beta.2 ?

@robertcoltheart
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I need to back port this to the 1.0 branch and it isn't a straightforward merge, since we are supporting 3.5 and 4.0. Will update when its ready.

Please sign in to comment.