1- # This file configures GitVersion 6.x to work with Terminal.Gui's GitFlow branching strategy.
1+ # V1 0 This file configures GitVersion 6.x to work with Terminal.Gui's GitFlow branching strategy.
22#
3- # Terminal.Gui uses the GitFlow branching strategy.
3+ # Terminal.Gui v1 uses the GitFlow branching strategy.
44# https://gitversion.net/docs/learn/branching-strategies/gitflow/
55#
66# - We have two main branches: `v1_release` and `v1_develop`.
1616# - v1_develop: Develop branch for V1 (historical)
1717#
1818# Package Naming:
19- # - from v1_develop: 2 .1.0-develop.1 (minor version increments)
20- # - from v1_release (pre-release): 2 .0.0-prealpha.1 or 2 .0.0-beta.1
21- # - from v1_release (release): 2 .0.0 (patch version increments)
19+ # - from v1_develop: 1 .1.0-develop.1 (minor version increments)
20+ # - from v1_release (pre-release): 1 .0.0-prealpha.1 or 1 .0.0-beta.1
21+ # - from v1_release (release): 1 .0.0 (patch version increments)
2222#
2323mode : ContinuousDelivery # GitVersion 6.x uses Mainline mode for GitFlow, focusing on main branch releases
2424
@@ -27,17 +27,16 @@ tag-prefix: '[vV]'
2727
2828branches :
2929
30- # V2 Release Branch
30+ # V1 Release Branch
3131 main :
3232 # Matches the v1_release branch
3333 regex : ^v1_release$
3434 # Increments patch version (x.y.z+1) on commits
3535 increment : Patch
3636 # Specifies v1_develop as the source branch
3737 source-branches : ['develop']
38- pre-release-weight : 100
3938
40- # V2 Development Branch
39+ # V1 Development Branch
4140 develop :
4241 # Matches the v1_develop branch
4342 regex : v1_develop
@@ -50,22 +49,6 @@ branches:
5049 # Indicates this branch feeds into release branches
5150 tracks-release-branches : true
5251
53- # # V1 Branches - Included for historical reference
54- # v1_develop:
55- # regex: v1_develop
56- # label: v1_develop
57- # increment: Minor
58- # source-branches: ['v1_release']
59- # # Lower weight keeps V1 pre-releases sorted below V2
60- # pre-release-weight: 100
61-
62- # v1_release:
63- # regex: v1_release
64- # # Empty label for stable releases
65- # label: ''
66- # increment: Patch
67- # source-branches: ['v1_develop']
68-
6952 # Pull Request Branches
7053 # Configures versioning for PRs (e.g., 2.0.0-pr.feature-123.1)
7154 pull-request :
0 commit comments