# HG changeset patch # User Pierre-Yves David # Date 2020-04-14 01:05:54 # Node ID 261e71752d1f1d4df0292fca7b275c185fa41c6c # Parent 6b01799e9db0311c0b0bd7d8e95549293c2974f1 nodemap: move on disk file to version 1 The current format contains the information we need, lets freeze it before the release. Differential Revision: https://phab.mercurial-scm.org/D8416 diff --git a/mercurial/revlogutils/nodemap.py b/mercurial/revlogutils/nodemap.py --- a/mercurial/revlogutils/nodemap.py +++ b/mercurial/revlogutils/nodemap.py @@ -267,8 +267,7 @@ def _persist_nodemap(tr, revlog, pending # data. Its content is currently very light, but it will expand as the on disk # nodemap gains the necessary features to be used in production. -# version 0 is experimental, no BC garantee, do no use outside of tests. -ONDISK_VERSION = 0 +ONDISK_VERSION = 1 S_VERSION = struct.Struct(">B") S_HEADER = struct.Struct(">BQQQQ")