We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When tags include / in git, dunamai doesn't see them.
/
Example:
git init git commit --allow-empty -m 1 # Avoid #14 git commit --allow-empty -m 2 git tag v1.0.0 git commit --allow-empty -m 3 git tag test/v1.0.0 dunamai from git --debug --pattern '^test/v(?P<base>\d+\.\d+\.\d+)$' # Pattern '^test/v(?P<base>\d+\.\d+\.\d+)$' did not match any tags from ['v1.0.0']
This is because on init.py#501 has the following:
git for-each-ref "refs/tags/*'
Which in the above case returns:
refs/tags/v1.0.0
If you use (two asterisks):
git for-each-ref "refs/tags/**'
It works as expected
The text was updated successfully, but these errors were encountered:
#16: Update changelog and fix unrelated issue with missing Bazaar dow…
01f2540
…nload
Merge pull request mtkennerly#16 from gsemet/master
347fb76
Fix for py3.5
Successfully merging a pull request may close this issue.
When tags include
/
in git, dunamai doesn't see them.Example:
This is because on init.py#501 has the following:
Which in the above case returns:
If you use (two asterisks):
It works as expected
The text was updated successfully, but these errors were encountered: