File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
docs/input/docs/reference
GitVersion.Core.Tests/IntegrationTests
GitVersion.Core/Configuration Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,10 @@ minor-version-bump-message: '\+semver:\s?(feature|minor)'
4848patch-version-bump-message : ' \+semver:\s?(fix|patch)'
4949no-bump-message : ' \+semver:\s?(none|skip)'
5050label-pre-release-weight : 60000
51+ commit-date-format : yyyy-MM-dd
52+ merge-message-formats : {}
53+ update-build-number : true
54+ semantic-version-format : Strict
5155branches :
5256 develop :
5357 mode : ContinuousDeployment
@@ -154,9 +158,6 @@ branches:
154158 - support
155159ignore :
156160 sha : []
157- commit-date-format : yyyy-MM-dd
158- merge-message-formats : {}
159- update-build-number : true
160161mode : ContinuousDelivery
161162label : ' {BranchName}'
162163increment : Inherit
@@ -167,7 +168,6 @@ regex: ''
167168tracks-release-branches : false
168169is-release-branch : false
169170is-mainline : false
170-
171171` ` `
172172
173173The details of the available options are as follows:
Original file line number Diff line number Diff line change @@ -407,7 +407,7 @@ public void ShouldPickUpVersionFromMainAfterReleaseBranchMergedBack()
407407 // merge release into main
408408 fixture . Checkout ( MainBranch ) ;
409409 fixture . MergeNoFF ( "release/1.0.0" ) ;
410- // fixture.AssertFullSemverNew ("1.0.1+2", configuration);
410+ fixture . AssertFullSemver ( "1.0.1+2" , configuration ) ;
411411
412412 // create a misnamed feature branch (i.e. it uses the default configuration) from main and verify the version
413413 fixture . BranchTo ( "misnamed" ) ;
Original file line number Diff line number Diff line change @@ -425,8 +425,8 @@ private static void ValidateConfiguration(GitVersionConfiguration configuration)
425425
426426 public record BranchMetaData
427427 {
428- public string Name { get ; set ; }
428+ public string Name { get ; init ; }
429429
430- public string RegexPattern { get ; set ; }
430+ public string RegexPattern { get ; init ; }
431431 }
432432}
You can’t perform that action at this time.
0 commit comments