hdevalke
hdevalke
Indeed, gaps don't work, because we calculate when to stop. I am trying to implement it differently, but i have difficulties to find the right way to stop. e.g. `[v1.1.1,...
I have a solution for this, but it is part of a bigger refactor. This refactor will probably make #111 also easy to implement. I need some time though to...
> On March 14, 2023, we emailed you about your Free Team subscription, outlining our intention to sunset that plan. After listening to the concerns of the community, we’ve decided...
You probably are referring to this: https://github.com/convco/convco/blob/main/src/conventional/config.rs#L131? I think the workaround would be to add in your config that Feat increments Minor and Fix increments Patch. I would have to...
I think it is good that convco check does check the case as it makes the commit messages consistent. Do you only have issues with merge commits (commit with more...
https://github.com/convco/convco/blob/master/src/git.rs#L167 could be faster if the for each stops at the first match. What is the expected time? For example how long does a `git log previous..HEAD -- path/` takes?
I was wrong, the code already stopped the for_each at the first path found. I made a fix that will probably improve performance, but i am not sure about it....
I tried to do some benchmarks, but i could not find a difference.
As documented it checks the merge commits too, otherwise commits with 2 or more parents get skipped.
I have to test this out. I think there is a bug that when there is a tag v0.2.2 the bump pre-release should always be 0.2.3-rc.1 or 0.3.0-rc1. I am...