You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I am doing some tests when merging a prerelease branch for example develop into a release branch for example main, I was expecting that after the release of a new tag happens from main, I do not need to merge main into develop for it to "sync" with the new latest tag, but right now if after releasing a new latest tag from main, I keep adding new features into develop and run semantic release it will keep generating prerelease tag with the version before. For example:
If I have the prerelease version 18.1.1-develop.1, then I merge to main it successfully generates the version 18.1.1, but after this, if I do not merge main into develop, and do a new patch in develop, develop will generate tag 18.1.1-develop.2, but I expect 18.1.2-develop.1, to get 18.1.2-develop.1 I have to merge main into develop before adding any new changes, but I would like to avoid this in order to have a more linear git history, is it possible with some kind of configuration? Maybe I have to set both branches channel to latest or how could I do it?
The text was updated successfully, but these errors were encountered:
Hello, I am doing some tests when merging a prerelease branch for example
develop
into a release branch for examplemain
, I was expecting that after the release of a new tag happens frommain
, I do not need to mergemain
intodevelop
for it to "sync" with the new latest tag, but right now if after releasing a new latest tag frommain
, I keep adding new features intodevelop
and run semantic release it will keep generating prerelease tag with the version before. For example:If I have the prerelease version
18.1.1-develop.1
, then I merge tomain
it successfully generates the version18.1.1
, but after this, if I do not mergemain
intodevelop
, and do a new patch indevelop
,develop
will generate tag18.1.1-develop.2
, but I expect18.1.2-develop.1
, to get18.1.2-develop.1
I have to mergemain
intodevelop
before adding any new changes, but I would like to avoid this in order to have a more linear git history, is it possible with some kind of configuration? Maybe I have to set both branches channel to latest or how could I do it?The text was updated successfully, but these errors were encountered: