nodemap: move on disk file to version 1
authorPierre-Yves David <pierre-yves.david@octobus.net>
Tue, 14 Apr 2020 03:05:54 +0200
changeset 44867 261e71752d1f
parent 44866 6b01799e9db0
child 44868 b81486b609a3
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
mercurial/revlogutils/nodemap.py
--- a/mercurial/revlogutils/nodemap.py	Tue Apr 14 03:01:52 2020 +0200
+++ b/mercurial/revlogutils/nodemap.py	Tue Apr 14 03:05:54 2020 +0200
@@ -267,8 +267,7 @@
 # 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")