# HG changeset patch # User Pierre-Yves David # Date 1493437447 -7200 # Node ID e719645cf743c661d0e9c3b3b6348178795fac11 # Parent a36a8c6a09aca3482107bc5df2254028c4667add# Parent 18b8dc058f75d41bf7c621cafc2046dfcd6c02ff merge with stable diff -r a36a8c6a09ac -r e719645cf743 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 ------------------- diff -r a36a8c6a09ac -r e719645cf743 hgext3rd/evolve/obsdiscovery.py --- 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 diff -r a36a8c6a09ac -r e719645cf743 hgext3rd/evolve/stablerange.py --- 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)