diff --git a/NEWS b/NEWS index c04f2d3..1da1490 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,9 @@ +Changes in grainyhead-0.2.1 (2023-03-22) +---------------------------------------- + + * Fix incorrect handling of dates in --from and --to options. + + Changes in grainyhead-0.2.0 (2023-01-18) ---------------------------------------- diff --git a/docs/install.rst b/docs/install.rst index b019ced..907df72 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.0.tar.gz - $ cd grainyhead-0.2.0 + $ tar zxf grainyhead-0.2.1.tar.gz + $ cd grainyhead-0.2.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.0-py3-none-any.whl + $ python -m pip install dist/grainyhead-0.2.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.0) + grh (GrainyHead 0.2.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 7fd229a..fc79d63 100644 --- a/incenp/grainyhead/__init__.py +++ b/incenp/grainyhead/__init__.py @@ -1 +1 @@ -__version__ = '0.2.0' +__version__ = '0.2.1' diff --git a/incenp/grainyhead/util.py b/incenp/grainyhead/util.py index 3c9bf24..f715ce5 100644 --- a/incenp/grainyhead/util.py +++ b/incenp/grainyhead/util.py @@ -1,5 +1,5 @@ # grainyhead - Helper tools for GitHub -# Copyright © 2021,2022 Damien Goutte-Gattat +# Copyright © 2021,2022,2023 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