Add support for linking to issues and adding datestamps to changelog entries.
This commit is contained in:
20
docs/conf.py
20
docs/conf.py
@@ -5,6 +5,7 @@ import setuptools_scm
|
||||
|
||||
extensions = [
|
||||
'sphinx.ext.autodoc',
|
||||
'rst.linker',
|
||||
]
|
||||
|
||||
# General information about the project.
|
||||
@@ -17,3 +18,22 @@ version = setuptools_scm.get_version(root='..', relative_to=__file__)
|
||||
release = version
|
||||
|
||||
master_doc = 'index'
|
||||
|
||||
link_files = {
|
||||
'CHANGES.rst': dict(
|
||||
using=dict(
|
||||
GH='https://github.com',
|
||||
project=project,
|
||||
),
|
||||
replace=[
|
||||
dict(
|
||||
pattern=r"(Issue )?#(?P<issue>\d+)",
|
||||
url='{GH}/jaraco/{project}/issues/{issue}',
|
||||
),
|
||||
dict(
|
||||
pattern=r"^(?m)((?P<scm_version>v?\d+(\.\d+){1,2}))\n[-=]+\n",
|
||||
with_scm="{text}\n{rev[timestamp]:%d %b %Y}\n",
|
||||
),
|
||||
],
|
||||
),
|
||||
}
|
||||
|
@@ -5,4 +5,4 @@
|
||||
History
|
||||
*******
|
||||
|
||||
.. include:: ../CHANGES.rst
|
||||
.. include:: ../CHANGES (links).rst
|
||||
|
Reference in New Issue
Block a user