--- 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
-------------------
--- 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 = {}