tomasbjerre / git-changelog-maven-plugin

Maven plugin that can generate a changelog, or releasenotes, from git repository
Other
78 stars 35 forks source link

Add configuration "ignoreTagsIfNameMatches" to goal "semantic-version" #49

Closed luvetter closed 1 year ago

luvetter commented 1 year ago

We have two kinds of tags in our repositories:

The goal "semantic-version" recognizes the release-version as a semantiv version without a patch number and since the release version is usallay the newest tag in our repos it is used as "highst version" and as the base for the next semantic version. But we would like to ignore the tags with the format "Year.RollingNumber" in the semantic versioning process.

So we would like to set "ignoreTagsIfNameMatches" for the goal "semantic-version"

Example for minor update:

Current behaviour: 2.0.1 changes to 2023.4.0 Expected behaviour: 2.0.1 changes to 2.1.0 (through configuration of ignoreTagsIfNameMatches)

tomasbjerre commented 1 year ago

should be fixed now. Open issue again if any problems.