Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Integrate code review remarks
  • Loading branch information
HHobeck committed May 6, 2024
commit 4f2fa294a12468e8c9c13dcf870d4986b37eebb9
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

namespace GitVersion.VersionCalculation.TrunkBased.NonTrunk;

/// <summary>
/// This incrementer identifies the first commit on a branch marked with IsReleaseBranch true and appends the version number for
/// instance 1.0.0 (extracted from the branch name) as an alternative semantic version to the context. This information will be
/// used later to bump the version number to a higher value if necessary.
/// </summary>
internal sealed class FirstCommitOnRelease : ITrunkBasedIncrementer
{
// B 57 minutes ago (HEAD -> release/1.0.0)
Expand Down