Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ keywords:
- graph isomorphism
- edit distance
license: LGPL-3.0-or-later
version: 0.4.0
date-released: '2026-09-09'
version: 0.5.0
date-released: '2026-09-16'
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ problem with the automatic choice.
An unrecognized value raises a `ValueError` rather than falling back to a default.

### Version Information
`--version` or `-v` writes a line such as `Graphtage version 0.4.0` to STDERR. If you pass it without any input files,
`--version` or `-v` writes a line such as `Graphtage version 0.5.0` to STDERR. If you pass it without any input files,
Graphtage prints the version and exits; if you pass input files as well, it prints the version and then computes the
diff. `-dumpversion` writes the raw version to STDOUT and exits without reading any input.

Expand Down
1 change: 1 addition & 0 deletions docs/_templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<dl>
<dt>{{ _('Versions') }}</dt>
<dd><a href="{{ version_root }}latest/">latest</a></dd>
<dd><a href="{{ version_root }}v0.5.0/">0.5.0</a></dd>
<dd><a href="{{ version_root }}v0.4.0/">0.4.0</a></dd>
<dd><a href="{{ version_root }}v0.3.1/">0.3.1</a></dd>
<dd><a href="{{ version_root }}v0.3.0/">0.3.0</a></dd>
Expand Down
2 changes: 1 addition & 1 deletion graphtage/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
automatically updates the version used in the build system and rendered in the documentation.
"""

__version__ = "0.4.0"
__version__ = "0.5.0"
VERSION_STRING = __version__

# For backwards compatibility with code that expects the tuple format
Expand Down