# HG changeset patch # User Pierre-Yves David # Date 1478013676 -3600 # Node ID 542693605fe58e01085bfc8e5b38c0ad115a5a79 # Parent 649d7a574c3f952958dbd15a92ee6593a4f51185 evolve: drop support for version older than 3.8 The support for 'hgext3rd' was introduced in 3.8. Dropping support for older version seems reasonable. diff --git a/README b/README --- a/README +++ b/README @@ -58,6 +58,7 @@ 6.0.0 -- + - drop compatibility for Mercurial < 3.8 - removed old (unpackaged) pushexperiment extension. - move all extensions in the official 'hgext3rd' namespace package diff --git a/hgext3rd/evolve/__init__.py b/hgext3rd/evolve/__init__.py --- a/hgext3rd/evolve/__init__.py +++ b/hgext3rd/evolve/__init__.py @@ -20,7 +20,8 @@ ''' __version__ = '5.6.0' -testedwith = '3.4.3 3.5.2 3.6.2 3.7.3 3.8.1 3.9 4.0 4.1' +testedwith = '3.8.4 3.9.2 4.0.2 4.1' + buglink = 'https://bz.mercurial-scm.org/'