Mercurial > public > mercurial-scm > hg-stable
diff mercurial/requirements.py @ 46665:ee91966aec0f
requirements: add constant for revlog v1 requirement
Since this series is adding a new requirement, we might as well clean up while
we're here.
Differential Revision: https://phab.mercurial-scm.org/D10105
author | Rapha?l Gom?s <rgomes@octobus.net> |
---|---|
date | Wed, 03 Mar 2021 14:00:45 +0100 |
parents | 6e81446bf1d9 |
children | f4c325bf80fc |
line wrap: on
line diff
--- a/mercurial/requirements.py Thu Feb 18 15:07:45 2021 +0100 +++ b/mercurial/requirements.py Wed Mar 03 14:00:45 2021 +0100 @@ -21,6 +21,8 @@ # Stores manifest in Tree structure TREEMANIFEST_REQUIREMENT = b'treemanifest' +REVLOGV1_REQUIREMENT = b'revlogv1' + # Increment the sub-version when the revlog v2 format changes to lock out old # clients. REVLOGV2_REQUIREMENT = b'exp-revlogv2.1'