Skip to content

Commit

Permalink
Pre-release updates.
Browse files Browse the repository at this point in the history
Update version number when needed, add NEWS file.
  • Loading branch information
gouttegd committed Jan 18, 2023
1 parent f781f2f commit 5f105af
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
include AUTHORS COPYING README.md requirements.txt
include AUTHORS COPYING NEWS README.md requirements.txt
graft docs
8 changes: 8 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -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`.
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.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:

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.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
Expand All @@ -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 <http://www.gnu.org/licenses/gpl.html>.
2 changes: 1 addition & 1 deletion incenp/grainyhead/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 <http://www.gnu.org/licenses/gpl.html>.
Expand Down

0 comments on commit 5f105af

Please sign in to comment.