Mercurial > evolve
changeset 2291: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 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)