Skip to content

Commit 7c76aee

Browse files
committed
Update the changelog
1 parent fc253ed commit 7c76aee

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

docs/changelog.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22
Change log
33
**********
44

5+
0.5.0
6+
#####
7+
8+
* Add HTML tests to avoid regressions.
9+
Patch by Mike McKiernan in https://github.com/sphinx-doc/sphinx-argparse/pull/33
10+
* Escape reStructuredText special characters in the default value.
11+
Patch by Robert Roos.
12+
* Fix the options formatter for manpages.
13+
Patch by Felix Moessbauer in https://github.com/sphinx-doc/sphinx-argparse/pull/50
14+
* Handle ``None`` return from :py:func:`shutil.which`.
15+
Patch by Om Vats in https://github.com/sphinx-doc/sphinx-argparse/pull/52
16+
* Drop support for Python 3.7, 3.8, and 3.9.
17+
Patch by Adam Turner.
18+
* Adopt `Flit <https://flit.pypa.io/>`_ for packaging.
19+
Patch by Adam Turner.
20+
* Make argument and option section IDs more unique.
21+
Patch by David Hoese in https://github.com/sphinx-doc/sphinx-argparse/pull/44
22+
* Fix cases where a suppressed default was visible.
23+
Patch by Michele Riva in https://github.com/sphinx-doc/sphinx-argparse/pull/53
24+
* Support ``autodoc_mock_imports``.
25+
Patch by Adam Turner and Prajeesh Ag in https://github.com/sphinx-doc/sphinx-argparse/pull/35
26+
527
0.4.0
628
#####
729

docs/conf.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
extensions = [
33
'sphinx.ext.autodoc',
44
'sphinx.ext.coverage',
5+
'sphinx.ext.intersphinx',
56
'sphinx.ext.viewcode',
67
'sphinxarg.ext',
78
]
@@ -11,6 +12,12 @@
1112
copyright = '2017, Alex Rudakov, Devon Ryan, and contributors'
1213
release = version = '0.2.5'
1314

15+
# -- Options for intersphinx ---------------------------------------------------
16+
17+
intersphinx_mapping = {
18+
'python': ('https://docs.python.org/3/', None),
19+
}
20+
1421
# -- Options for HTML output ---------------------------------------------------
1522

1623
html_theme = 'furo'

0 commit comments

Comments
 (0)