-
With the introduction of I am somewhat puzzled on why this is the default behaviour. Example:
running GitVersion with default config on 783d08a8 produces v0.2.0-beta.2 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
In the case when branching from a tag on main I would expect a version increment. The algorithm just increments the version in case the Example:
running GitVersion with default config on 783d08a8 produces 0.2.1-beta.0 not 0.2.0 Does this make sense? |
Beta Was this translation helpful? Give feedback.
Good question. It depends what your motivation is:
I think the most user who are using the
GitFlow/v1
workflow are motivated by the bulled point two. The process is normally you are:You see in your scenario you have created a tag and want to deploy afterwards which differs from the process I have outlined. Why would you create a tag before deploying it? For me a tag is the documentation that is h…