I have integrated standard-version into my javascript project. I made sure to include the release
script in my package.json:
"scripts": {
...
"release": "standard-version"
}
However, after adding a commit with the message:
feat: test
Running npm run release
led to an increase in the patch version of my project.
Initially, the version was 0.2.1
(tag: v0.2.1), but the generated version became 0.2.2
, accompanied by this commit message:
chore(release): 0.2.2
This outcome raises the question - why didn't it increment the minor version instead?