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
Here's an example showing the output Note the line - 2.0.1 under the v2.1.0 section. I think this is happening because some versions of npm don't include the v prefix in the tagged commit message. In this case, the v2.0.1 tag has a message of just 2.0.1 and so it's being picked up as a commit inside the next release.
I tried to fix this by using a custom ignore commit pattern, but it doesn't seem to work. I tried auto-changelog --ignore-commit-pattern v?\d+\.\d+\.\d+
The text was updated successfully, but these errors were encountered:
It looks like you are tagging commits but then merging them to the branch via pull request. The tagged commit will appear before the merge in the "timeline" so the merge falls into the next version, even though it is named after the older version. The only reason they are appearing in the changelog in the first place is because they are pull requests and not regular commits.
Once I've pushed the fix for #195 your use of --ignore-commit-pattern should work.
Here's an example showing the output Note the line
- 2.0.1
under thev2.1.0
section. I think this is happening because some versions ofnpm
don't include thev
prefix in the tagged commit message. In this case, thev2.0.1
tag has a message of just2.0.1
and so it's being picked up as a commit inside the next release.I tried to fix this by using a custom ignore commit pattern, but it doesn't seem to work. I tried
auto-changelog --ignore-commit-pattern v?\d+\.\d+\.\d+
The text was updated successfully, but these errors were encountered: