equal
deleted
inserted
replaced
25 |
25 |
26 # Stores manifest in Tree structure |
26 # Stores manifest in Tree structure |
27 TREEMANIFEST_REQUIREMENT = b'treemanifest' |
27 TREEMANIFEST_REQUIREMENT = b'treemanifest' |
28 |
28 |
29 REVLOGV1_REQUIREMENT = b'revlogv1' |
29 REVLOGV1_REQUIREMENT = b'revlogv1' |
|
30 |
|
31 # Increment the sub-version when the revlog v2 format changes to lock out old |
|
32 # clients. |
|
33 CHANGELOGV2_REQUIREMENT = b'exp-changelog-v2' |
30 |
34 |
31 # Increment the sub-version when the revlog v2 format changes to lock out old |
35 # Increment the sub-version when the revlog v2 format changes to lock out old |
32 # clients. |
36 # clients. |
33 REVLOGV2_REQUIREMENT = b'exp-revlogv2.2' |
37 REVLOGV2_REQUIREMENT = b'exp-revlogv2.2' |
34 |
38 |