Hi,
We moved to using the jgitflow plugin instead of the maven-release plugin. We had our master at 0.1.8-SNAPSHOT to start, from the last time we ran the maven-release plugin.
We initially ran mvn jgitflow:release-start and then mvn jgitflow:release-finish. We ended up with our master branch at 0.1.9, our develop branch at 0.1.10-SNAPSHOT. Now we ran mvn jgitflow:hotfix-start, in order to do a hotfix, which means we have a hotfix branch also at 0.1.10-SNAPSHOT, just like develop.
So we now realise we should have initially asked the plugin to make the develop branch 0.2.0-SNAPSHOT and make use of major and minor version numbers. How do we now use the plugin to move our develop branch to 0.2.0-SNAPSHOT? Is there a way, or do we have to do it manually? And if the latter will it cause issues when we use the plugin to finish the hotfix and it tries to merge back into develop, when it does the "Updating develop poms back to pre merge state".
Cheers,
Menno