pullbundle: document working version and update changelog to mention it stable
authorPierre-Yves David <pierre-yves.david@octobus.net>
Fri, 12 Oct 2018 16:25:06 +0200
branchstable
changeset 4175 03c3206f44f3
parent 4170 50b8b06be26d
child 4176 45d4b49d81d9
pullbundle: document working version and update changelog to mention it
CHANGELOG
hgext3rd/pullbundle.py
--- 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 = {}