Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ branches:
release:
mode: ContinuousDelivery
tag: beta
increment: Patch
increment: None
prevent-increment-of-merged-branch-version: true
track-merge-target: false
regex: ^releases?[/-]
Expand Down
2 changes: 1 addition & 1 deletion src/GitVersionCore/Configuration/ConfigExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public static void Reset(this Config config)
{ "develop", "master", "support", "release" },
defaultTag: "beta",
defaultPreventIncrement: true,
defaultIncrementStrategy: IncrementStrategy.Patch,
defaultIncrementStrategy: IncrementStrategy.None,
isReleaseBranch: true);
ApplyBranchDefaults(config, GetOrCreateBranchDefaults(config, Config.FeatureBranchKey), Config.FeatureBranchRegex,
new List<string>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,11 @@ private class Versions
{
public SemanticVersion IncrementedVersion { get; set; }
public BaseVersion Version { get; set; }

public override string ToString()
{
return $"{Version} | {IncrementedVersion}";
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@ public VersionTaggedCommit(Commit commit, SemanticVersion semVer, string tag)
Commit = commit;
SemVer = semVer;
}

public override string ToString()
{
return $"{Tag} | {Commit} | {SemVer}";
}
}
}
}