diff --git a/MANIFEST.in b/MANIFEST.in index e19d3a8..88fe608 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,2 @@ -include AUTHORS COPYING README.md requirements.txt +include AUTHORS COPYING NEWS README.md requirements.txt graft docs diff --git a/NEWS b/NEWS new file mode 100644 index 0000000..c04f2d3 --- /dev/null +++ b/NEWS @@ -0,0 +1,8 @@ +Changes in grainyhead-0.2.0 (2023-01-18) +---------------------------------------- + + * Add cache control option (`--caching=...`). + * Purge duplicated items when refreshing the cache. + * Support complex selectors with binary operators (&, |, and ^) and + parenthesised expressions. + * Rename the executable to `grainyhead`. diff --git a/docs/install.rst b/docs/install.rst index f7c299c..b019ced 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.1.0.tar.gz - $ cd grainyhead-0.1.0 + $ tar zxf grainyhead-0.2.0.tar.gz + $ cd grainyhead-0.2.0 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.1.0-py3-none-any.whl + $ python -m pip install dist/grainyhead-0.2.0-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,8 +67,8 @@ running the following command: .. code-block:: console $ grh --version - grh (GrainyHead 0.1.0) - Copyright © 2022 Damien Goutte-Gattat + grh (GrainyHead 0.2.0) + Copyright © 2023 Damien Goutte-Gattat This program is released under the GNU General Public License. See the COPYING file or . diff --git a/incenp/grainyhead/main.py b/incenp/grainyhead/main.py index 0341dd7..8c5efc2 100644 --- a/incenp/grainyhead/main.py +++ b/incenp/grainyhead/main.py @@ -36,7 +36,7 @@ prog_name = "grh" prog_notice = f"""\ {prog_name} (GrainyHead {__version__}) -Copyright © 2022 Damien Goutte-Gattat +Copyright © 2023 Damien Goutte-Gattat This program is released under the GNU General Public License. See the COPYING file or .