scanpydoc.release_notes#
A release notes directive.
Given a list of version files matching FULL_VERSION_RE
,
render them using the following (where .
is the directory they are in):
.. release-notes:: .
With e.g. the files 1.2.0.md
, 1.2.1.md
, and 1.3.0.rst
,
this will render like the following:
_v1.3:
Version 1.3
===========
.. include:: 1.3.0.rst
_v1.2:
Version 1.2
===========
.. include:: 1.2.1.md
.. include:: 1.2.0.md
Module Attributes
|
Regex matching a full version number including patch part, maybe with more after. |