changeset 2387:e719645cf743

merge with stable
author Pierre-Yves David <pierre-yves.david@ens-lyon.org>
date Sat, 29 Apr 2017 05:44:07 +0200
parents a36a8c6a09ac (current diff) 18b8dc058f75 (diff)
children f026e85bd0b2
files README
diffstat 3 files changed, 7 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/README
+++ b/README
@@ -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
+++ b/hgext3rd/evolve/obsdiscovery.py
@@ -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
+++ b/hgext3rd/evolve/stablerange.py
@@ -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)