From d0bea7e86da4e786c706a4d516748c76825f5f41 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Thu, 10 Aug 2023 19:55:21 +0100 Subject: [PATCH] Prepare 0.3.1 release. Bump version number (including in docs) and add NEWS entry. --- NEWS | 5 +++++ docs/install.rst | 8 ++++---- incenp/grainyhead/__init__.py | 2 +- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/NEWS b/NEWS index 0df7306..961769a 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,8 @@ +Changes in grainyhead-0.3.1 (2023-08-10) +---------------------------------------- + + * Exclude all bots when listing committers and commenters (#18). + Changes in grainyhead-0.3.0 (2023-07-10) ---------------------------------------- diff --git a/docs/install.rst b/docs/install.rst index 907df72..e6d5292 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -26,8 +26,8 @@ You may download a release tarball from the `homepage`_ or from the .. code-block:: console - $ tar zxf grainyhead-0.2.1.tar.gz - $ cd grainyhead-0.2.1 + $ tar zxf grainyhead-0.3.1.tar.gz + $ cd grainyhead-0.3.1 GrainyHead requires the following Python dependencies to work: @@ -46,7 +46,7 @@ Then build a *wheel* package and install it: .. code-block:: console $ python setup.py bdist_wheel - $ python -m pip install dist/grainyhead-0.2.1-py3-none-any.whl + $ python -m pip install dist/grainyhead-0.3.1-py3-none-any.whl To install the current development version (tip of the master branch), you may either clone locally the repository and then proceed as above, or use *pip* to @@ -67,7 +67,7 @@ running the following command: .. code-block:: console $ grh --version - grh (GrainyHead 0.2.1) + grh (GrainyHead 0.3.1) Copyright © 2023 Damien Goutte-Gattat This program is released under the GNU General Public License. diff --git a/incenp/grainyhead/__init__.py b/incenp/grainyhead/__init__.py index 0404d81..e1424ed 100644 --- a/incenp/grainyhead/__init__.py +++ b/incenp/grainyhead/__init__.py @@ -1 +1 @@ -__version__ = '0.3.0' +__version__ = '0.3.1'