# HG changeset patch # User Pierre-Yves David # Date 1539354306 -7200 # Node ID 03c3206f44f3b529d369f44d82bcf970a2bf8165 # Parent 50b8b06be26dcd3b908714eab545394284222dd2 pullbundle: document working version and update changelog to mention it diff -r 50b8b06be26d -r 03c3206f44f3 CHANGELOG --- a/CHANGELOG Fri Oct 12 15:37:22 2018 +0200 +++ b/CHANGELOG Fri Oct 12 16:25:06 2018 +0200 @@ -11,6 +11,11 @@ * caches: skip warming the stablerange cache on strip in "auto" mode * topic: properly register the '{topicidx}' for mercurial <= 4.5 + * pullbundle: experimental extension to slice pull in multiple slices whose + associated bundle can be cached. The extensions is shipped + alongside evolve only for convenience. It it requires data + structures that currently live in the evolve extensions. + 8.2.1 -- 2018-09-14 ------------------- diff -r 50b8b06be26d -r 03c3206f44f3 hgext3rd/pullbundle.py --- a/hgext3rd/pullbundle.py Fri Oct 12 15:37:22 2018 +0200 +++ b/hgext3rd/pullbundle.py Fri Oct 12 16:25:06 2018 +0200 @@ -93,8 +93,8 @@ from mercurial.i18n import _ __version__ = '0.1.0.dev' -testedwith = '4.7.1' -# minimumhgversion = '' +testedwith = '4.4 4.5 4.6 4.7.1' +minimumhgversion = '4.4' buglink = 'https://bz.mercurial-scm.org/' cmdtable = {}