merge with stable
authorPierre-Yves David <pierre-yves.david@ens-lyon.org>
Sat, 29 Apr 2017 05:44:07 +0200
changeset 2291 e719645cf743
parent 2290 a36a8c6a09ac (current diff)
parent 2287 18b8dc058f75 (diff)
child 2292 f026e85bd0b2
merge with stable
README
--- a/README	Fri Apr 28 16:56:09 2017 +0200
+++ b/README	Sat Apr 29 05:44:07 2017 +0200
@@ -121,6 +121,11 @@
    when a push is publishing some draft changesets and 'abort' to prevent that
    to happen at all.
 
+6.0.2 - in progress
+-------------------
+
+ - fix the propagation of some some cache invalidation,
+
 6.0.1 -- 2017-04-20
 -------------------
 
--- a/hgext3rd/evolve/obsdiscovery.py	Fri Apr 28 16:56:09 2017 +0200
+++ b/hgext3rd/evolve/obsdiscovery.py	Sat Apr 29 05:44:07 2017 +0200
@@ -551,6 +551,7 @@
         def destroyed(self):
             if 'stablerange' in vars(self):
                 del self.stablerange
+            super(obshashrepo, self).destroyed()
 
     repo.__class__ = obshashrepo
 
--- a/hgext3rd/evolve/stablerange.py	Fri Apr 28 16:56:09 2017 +0200
+++ b/hgext3rd/evolve/stablerange.py	Sat Apr 29 05:44:07 2017 +0200
@@ -886,6 +886,7 @@
         def destroyed(self):
             if 'stablerange' in vars(self):
                 del self.stablerange
+            super(stablerangerepo, self).destroyed()
 
         def transaction(self, *args, **kwargs):
             tr = super(stablerangerepo, self).transaction(*args, **kwargs)