# HG changeset patch # User Pierre-Yves David # Date 1508847088 -7200 # Node ID f9faa5b6f937217562a5b5e9b27f74d8fbc01b69 # Parent f4c6cce8fb7dfe01d9fb4accbfc8e78a9fc41a09 compat: mark version 4.1 as the minimum version required We dropped compatibility for version 3.8, 3.9 and 4.0. diff -r f4c6cce8fb7d -r f9faa5b6f937 hgext3rd/evolve/__init__.py --- a/hgext3rd/evolve/__init__.py Mon Oct 23 16:08:29 2017 +0200 +++ b/hgext3rd/evolve/__init__.py Tue Oct 24 14:11:28 2017 +0200 @@ -32,7 +32,7 @@ backported to older version of Mercurial by this extension. Some older experimental protocol are also supported for a longer time in the extensions to help people transitioning. (The extensions is currently compatible down to -Mercurial version 3.8). +Mercurial version 4.1). New Config:: diff -r f4c6cce8fb7d -r f9faa5b6f937 hgext3rd/evolve/metadata.py --- a/hgext3rd/evolve/metadata.py Mon Oct 23 16:08:29 2017 +0200 +++ b/hgext3rd/evolve/metadata.py Tue Oct 24 14:11:28 2017 +0200 @@ -7,5 +7,5 @@ __version__ = '7.0.0.dev' testedwith = '4.1.3 4.2.3 4.3.2 4.4' -minimumhgversion = '3.8' +minimumhgversion = '4.1' buglink = 'https://bz.mercurial-scm.org/' diff -r f4c6cce8fb7d -r f9faa5b6f937 hgext3rd/topic/__init__.py --- a/hgext3rd/topic/__init__.py Mon Oct 23 16:08:29 2017 +0200 +++ b/hgext3rd/topic/__init__.py Tue Oct 24 14:11:28 2017 +0200 @@ -142,7 +142,7 @@ __version__ = '0.5.0.dev' testedwith = '4.1.3 4.2.3 4.3.3 4.4' -minimumhgversion = '4.0' +minimumhgversion = '4.1' buglink = 'https://bz.mercurial-scm.org/' if util.safehasattr(registrar, 'configitem'):