martinvonz created this revision. Herald added a reviewer: hg-reviewers. Herald added a subscriber: mercurial-patches.
REVISION SUMMARY Version 1 is the only version we support, so it seems like the natural choice for making it easy to create valid revlogs. REPOSITORY rHG Mercurial BRANCH default REVISION DETAIL https://phab.mercurial-scm.org/D12563 AFFECTED FILES rust/hg-core/src/revlog/index.rs CHANGE DETAILS diff --git a/rust/hg-core/src/revlog/index.rs b/rust/hg-core/src/revlog/index.rs --- a/rust/hg-core/src/revlog/index.rs +++ b/rust/hg-core/src/revlog/index.rs @@ -323,7 +323,7 @@ is_first: false, is_inline: false, is_general_delta: true, - version: 2, + version: 1, offset: 0, compressed_len: 0, uncompressed_len: 0, @@ -517,10 +517,10 @@ fn version_test() { let bytes = IndexEntryBuilder::new() .is_first(true) - .with_version(1) + .with_version(2) .build(); - assert_eq!(get_version(&bytes), 1) + assert_eq!(get_version(&bytes), 2) } } To: martinvonz, #hg-reviewers Cc: mercurial-patches, mercurial-devel _______________________________________________ Mercurial-devel mailing list Mercurial-devel@mercurial-scm.org https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel