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)'
48
48
patch-version-bump-message : ' \+semver:\s?(fix|patch)'
49
49
no-bump-message : ' \+semver:\s?(none|skip)'
50
50
label-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
51
55
branches :
52
56
develop :
53
57
mode : ContinuousDeployment
@@ -154,9 +158,6 @@ branches:
154
158
- support
155
159
ignore :
156
160
sha : []
157
- commit-date-format : yyyy-MM-dd
158
- merge-message-formats : {}
159
- update-build-number : true
160
161
mode : ContinuousDelivery
161
162
label : ' {BranchName}'
162
163
increment : Inherit
@@ -167,7 +168,6 @@ regex: ''
167
168
tracks-release-branches : false
168
169
is-release-branch : false
169
170
is-mainline : false
170
-
171
171
` ` `
172
172
173
173
The 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()
407
407
// merge release into main
408
408
fixture . Checkout ( MainBranch ) ;
409
409
fixture . MergeNoFF ( "release/1.0.0" ) ;
410
- // fixture.AssertFullSemverNew ("1.0.1+2", configuration);
410
+ fixture . AssertFullSemver ( "1.0.1+2" , configuration ) ;
411
411
412
412
// create a misnamed feature branch (i.e. it uses the default configuration) from main and verify the version
413
413
fixture . BranchTo ( "misnamed" ) ;
Original file line number Diff line number Diff line change @@ -425,8 +425,8 @@ private static void ValidateConfiguration(GitVersionConfiguration configuration)
425
425
426
426
public record BranchMetaData
427
427
{
428
- public string Name { get ; set ; }
428
+ public string Name { get ; init ; }
429
429
430
- public string RegexPattern { get ; set ; }
430
+ public string RegexPattern { get ; init ; }
431
431
}
432
432
}
You can’t perform that action at this time.
0 commit comments