Mercurial > hg-stable
changeset 44867:261e71752d1f
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
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Tue, 14 Apr 2020 03:05:54 +0200 |
parents | 6b01799e9db0 |
children | b81486b609a3 |
files | mercurial/revlogutils/nodemap.py |
diffstat | 1 files changed, 1 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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")