Skip to content

Commit

Permalink
docs: Use code blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Apr 27, 2024
1 parent 4dd3536 commit 05578e2
Showing 1 changed file with 22 additions and 5 deletions.
27 changes: 22 additions & 5 deletions docs/release_process.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,25 @@ Then:
#. All tests pass on continuous integration
#. The changelog is up-to-date and dated
#. The version number is correct in:
* setup.py
* docs/conf.py
#. Check for new authors: ``git log --invert-grep --author='James McKinney'``
#. Run ``python charts.py`` to update images in the documentation
#. Tag the release: ``git tag -a x.y.z -m 'x.y.z release.'; git push --follow-tags``

- setup.py
- docs/conf.py

#. Check for new authors:

.. code-block:: bash
git log --perl-regexp --author='^((?!James McKinney).*)$'
#. Update images in the documentation:

.. code-block:: bash
python charts.py
#. Tag the release:

.. code-block:: bash
git tag -a x.y.z -m 'x.y.z release.'
git push --follow-tags

0 comments on commit 05578e2

Please sign in to comment.