Skip to content

Commit

Permalink
Release 0.5.4
Browse files Browse the repository at this point in the history
Also: some tweaks in README and DEVELOPING
  • Loading branch information
brechtm committed Jun 17, 2022
1 parent 95ca26c commit c00a958
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 10 deletions.
11 changes: 7 additions & 4 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Release History
---------------

Release 0.5.4 (in development)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Release 0.5.4 (2022-06-17)
~~~~~~~~~~~~~~~~~~~~~~~~~~

A `discussion board`_ has been set up where you can connect with other rinohtype
users and the developers!
A `discussion board`_ has been set up where you can connect with other
rinohtype users and the developers!

.. _discussion board: https://github.com/brechtm/rinohtype/discussions

Expand Down Expand Up @@ -90,6 +90,9 @@ Fixed:
and importlib_metadata 3.6)
* Handle deprecation of distutils in Python 3.10 (use the packaging package)

Part of the work included in this release was kindly sponsored by `Lekis
<https://www.lekis.cz/>`_ and `Railnova <https://www.railnova.eu/>`_.


Release 0.5.3 (2021-06-16)
~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
10 changes: 6 additions & 4 deletions DEVELOPING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,9 @@ Pages is handled by the GitHub Actions workflow.
6. Set the release date.

* set ``__release_date__`` in *src/rinoh/__init__.py* (``YYYY-MM-DD``)
* add release date to this release's section (see other sections for
examples)
* add release date to this release's section in the CHANGELOG (see other
sections for examples)
* commit these changes as *Release x.y.z*

7. Create a git tag: ``git tag v$(poetry version --short)``

Expand All @@ -210,11 +211,12 @@ Pages is handled by the GitHub Actions workflow.

* Copy the release notes from the change log

11. Bump version number and reset the release date to "upcoming".
11. Bump version number and reset the release date to "in development".

* ``poetry version patch # or 'minor'``
* add new section at the top of the changelog
* set ``__release_date__`` in *src/rinoh/__init__.py* to ``'upcoming'``
* set ``__release_date__`` in *src/rinoh/__init__.py* to
``'in development'``


.. _PyPI: https://pypi.org/
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ end-of-life_ status. For parsing reStructuredText and CommonMark documents,
rinohtype depends on docutils_ and recommonmark_ respectively. pip_ takes care
of installing these requirements when you install rinohtype.

Syntax highlighting of code blocks is eneabled if Pygments_ is installed, which
Syntax highlighting of code blocks is enabled if Pygments_ is installed, which
will be installed automatically with Sphinx_. If you want to include images
other than PDF, PNG or JPEG, you also need to install Pillow_.

Expand Down
2 changes: 1 addition & 1 deletion src/rinoh/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@


__version__ = importlib_metadata.version('rinohtype')
__release_date__ = 'in development'
__release_date__ = '2022-06-17'


from . import resource
Expand Down

0 comments on commit c00a958

Please sign in to comment.