Commit fd4f1029 authored by Jason R. Coombs's avatar Jason R. Coombs

Recognize semver versions with v prefix in rst.linker config

parent e7d31479
...@@ -255,7 +255,7 @@ link_files = { ...@@ -255,7 +255,7 @@ link_files = {
url='https://www.python.org/dev/peps/pep-{pep_number:0>4}/', url='https://www.python.org/dev/peps/pep-{pep_number:0>4}/',
), ),
dict( dict(
pattern=r"^(?m)((?P<scm_version>\d+(\.\d+){1,2}))\n[-=]+\n", pattern=r"^(?m)((?P<scm_version>v?\d+(\.\d+){1,2}))\n[-=]+\n",
with_scm="{text}\n{rev[timestamp]:%d %b %Y}\n", with_scm="{text}\n{rev[timestamp]:%d %b %Y}\n",
), ),
], ],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment