Skip to content

Commit

Permalink
Prepare 0.3.2 release.
Browse files Browse the repository at this point in the history
Pre-publish new DOI, update NEWS file, bump version number and update
copyight notices where needed.
  • Loading branch information
gouttegd committed Mar 28, 2024
1 parent a01870a commit b2d5c73
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 14 deletions.
6 changes: 3 additions & 3 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ authors:
license: GPL-3.0-or-later
url: "https://incenp.org/dvlpt/grainyhead/"
repository-code: "https://github.com/gouttegd/grainyhead"
version: 0.3.1
date-released: "2023-08-10"
doi: 10.5281/zenodo.8329980
version: 0.3.2
date-released: "2024-03-28"
doi: 10.5281/zenodo.10892374
7 changes: 7 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
Changes in grainyhead-0.3.2 (2024-03-28)
----------------------------------------

* Fix crash when an event has no "actor" data (#21).


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)
----------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
source_suffix = '.rst'
master_doc = 'index'

copyright = u'2021,2022,2023 Damien Goutte-Gattat'
copyright = u'2021,2022,2023,2024 Damien Goutte-Gattat'
author = u'Damien Goutte-Gattat <[email protected]>'

language = 'en'
Expand Down
10 changes: 5 additions & 5 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ You may download a release tarball from the `homepage`_ or from the

.. code-block:: console
$ tar zxf grainyhead-0.3.1.tar.gz
$ cd grainyhead-0.3.1
$ tar zxf grainyhead-0.3.2.tar.gz
$ cd grainyhead-0.3.2
GrainyHead requires the following Python dependencies to work:

Expand All @@ -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.3.1-py3-none-any.whl
$ python -m pip install dist/grainyhead-0.3.2-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
Expand All @@ -67,8 +67,8 @@ running the following command:
.. code-block:: console
$ grh --version
grh (GrainyHead 0.3.1)
Copyright © 2023 Damien Goutte-Gattat
grh (GrainyHead 0.3.2)
Copyright © 2024 Damien Goutte-Gattat
This program is released under the GNU General Public License.
See the COPYING file or <http://www.gnu.org/licenses/gpl.html>.
2 changes: 1 addition & 1 deletion incenp/grainyhead/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.3.1'
__version__ = '0.3.2'
4 changes: 2 additions & 2 deletions incenp/grainyhead/main.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# grainyhead - Helper tools for GitHub
# Copyright © 2021,2022,2023 Damien Goutte-Gattat
# Copyright © 2021,2022,2023,2024 Damien Goutte-Gattat
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -36,7 +36,7 @@
prog_name = "grh"
prog_notice = f"""\
{prog_name} (GrainyHead {__version__})
Copyright © 2023 Damien Goutte-Gattat
Copyright © 2024 Damien Goutte-Gattat
This program is released under the GNU General Public License.
See the COPYING file or <http://www.gnu.org/licenses/gpl.html>.
Expand Down
2 changes: 1 addition & 1 deletion incenp/grainyhead/metrics.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# grainyhead - Helper tools for GitHub
# Copyright © 2021,2022,2023 Damien Goutte-Gattat
# Copyright © 2021,2022,2023,2024 Damien Goutte-Gattat
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion incenp/grainyhead/providers.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# grainyhead - Helper tools for GitHub
# Copyright © 2021,2022,2023 Damien Goutte-Gattat
# Copyright © 2021,2022,2023,2024 Damien Goutte-Gattat
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Expand Down

0 comments on commit b2d5c73

Please sign in to comment.