D9448: helptext: document the mechanism for extensions to report a version
mharbison72 (Matt Harbison)
phabricator at mercurial-scm.org
Sat Nov 28 19:36:31 UTC 2020
mharbison72 created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D9448
AFFECTED FILES
mercurial/helptext/internals/extensions.txt
CHANGE DETAILS
diff --git a/mercurial/helptext/internals/extensions.txt b/mercurial/helptext/internals/extensions.txt
--- a/mercurial/helptext/internals/extensions.txt
+++ b/mercurial/helptext/internals/extensions.txt
@@ -322,6 +322,15 @@
Older clients will print a warning that the extension requires a new version,
instead of attempting to load it.
+The extension itself can be assigned a version value through one of two module
+attributes, and will be displayed in crash reports and :hg:`version -v`::
+
+ * ``__version__`` is a plain value
+ * ``getversion`` is a no argument ``Callable`` that returns a value
+
+In both cases, the value must be either a byte string, or a list or tuple of
+numeric values which will be joined with ``.``.
+
Wrap up: what belongs where?
============================
To: mharbison72, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list