Hi, first of all thanks for this cool project.
I have a somewhat specific usecase where I would need to ignore some tags following a pattern when calculating the next version.
My approach would be to add build metadata to those commits so that they can be ignored later.
Example:

With this git log I would like to be able to run autotag and ignore the commits with meta so the next version in this example would be "v0.1.0".
My idea would be to add a "--ignore" option ("-i" for short) which allows specifying a pattern like "*meta*" to match the tag name against.
What do you think of it, would this be possible?
Thanks in advance :)