Update changelog and sphix config to use extlinks

Signed-off-by: Hiroshi Miura <miurahr@linux.com>
This commit is contained in:
Hiroshi Miura
2019-11-10 16:26:08 +09:00
parent fc01ff6942
commit 9e8a1a4e76
3 changed files with 25 additions and 16 deletions

View File

@@ -31,6 +31,7 @@ import os
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.coverage',
'sphinx.ext.extlinks',
]
# Add any paths that contain templates here, relative to this directory.
@@ -57,9 +58,9 @@ author = u'Hiroshi Miura'
# built documents.
#
# The short X.Y version.
version = u'0.3'
version = u'0.5'
# The full version, including alpha/beta/rc tags.
release = u'0.3.1'
release = u'0.5b2'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
@@ -284,3 +285,10 @@ texinfo_documents = [
# If true, do not generate a @detailmenu in the "Top" node's menu.
#texinfo_no_detailmenu = False
#-- Options for extlink extension
extlinks = {'issue': ('https://github.com/miurahr/aqtinstall/issues/%s',
'issue ')}
#-- Options for linkcheck
linkcheck_ignore = [r'https://github.com/miurahr/aqtinstall/compare/.+']