From 2144af3c3caa3eb6b30ef8ad9b2fd9ba93031b59 Mon Sep 17 00:00:00 2001 From: Evan Sultanik Date: Wed, 16 Sep 2026 14:38:47 -0400 Subject: [PATCH] Release version 0.5.0 Bump graphtage/version.py, which pyproject.toml, docs/conf.py, and bindist/Makefile all derive from, along with the three files that repeat the version by hand: the documentation version picker, the --version example in the README, and the citation metadata. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01F2sHz5c5TvMs9tFn2HhwaC --- CITATION.cff | 4 ++-- README.md | 2 +- docs/_templates/layout.html | 1 + graphtage/version.py | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 3f8fc60..e2b2e95 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -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' diff --git a/README.md b/README.md index 9697dc6..a573bb0 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/docs/_templates/layout.html b/docs/_templates/layout.html index 729623d..63024d4 100644 --- a/docs/_templates/layout.html +++ b/docs/_templates/layout.html @@ -17,6 +17,7 @@
{{ _('Versions') }}
latest
+
0.5.0
0.4.0
0.3.1
0.3.0
diff --git a/graphtage/version.py b/graphtage/version.py index 1e83d37..dab7c6a 100644 --- a/graphtage/version.py +++ b/graphtage/version.py @@ -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