Skip to content

Commit 05578e2

Browse files
committed
docs: Use code blocks
1 parent 4dd3536 commit 05578e2

File tree

1 file changed

+22
-5
lines changed

1 file changed

+22
-5
lines changed

docs/release_process.rst

+22-5
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,25 @@ Then:
1313
#. All tests pass on continuous integration
1414
#. The changelog is up-to-date and dated
1515
#. The version number is correct in:
16-
* setup.py
17-
* docs/conf.py
18-
#. Check for new authors: ``git log --invert-grep --author='James McKinney'``
19-
#. Run ``python charts.py`` to update images in the documentation
20-
#. Tag the release: ``git tag -a x.y.z -m 'x.y.z release.'; git push --follow-tags``
16+
17+
- setup.py
18+
- docs/conf.py
19+
20+
#. Check for new authors:
21+
22+
.. code-block:: bash
23+
24+
git log --perl-regexp --author='^((?!James McKinney).*)$'
25+
26+
#. Update images in the documentation:
27+
28+
.. code-block:: bash
29+
30+
python charts.py
31+
32+
#. Tag the release:
33+
34+
.. code-block:: bash
35+
36+
git tag -a x.y.z -m 'x.y.z release.'
37+
git push --follow-tags

0 commit comments

Comments
 (0)