# HG changeset patch # User Pierre-Yves David # Date 1542592174 0 # Node ID 35dac5aadcfc84fa61c35ec8be250c4068f785a6 # Parent a07cd1d076bb92a4d16c6837cd85fc2e00fbab35 compat: update metadata about minimum ag version diff -r a07cd1d076bb -r 35dac5aadcfc CHANGELOG --- a/CHANGELOG Tue Nov 06 10:41:50 2018 +0530 +++ b/CHANGELOG Mon Nov 19 01:49:34 2018 +0000 @@ -7,6 +7,7 @@ * push: have `--publish` overrule the `auto-publish` config * next: evolve aspiring children by default (use --no-evolve to skip) * next: pick lower part of a split as destination + * compat: drop compatibility with Mercurial 4.3 8.3.2 - in progress ------------------- diff -r a07cd1d076bb -r 35dac5aadcfc hgext3rd/evolve/__init__.py --- a/hgext3rd/evolve/__init__.py Tue Nov 06 10:41:50 2018 +0530 +++ b/hgext3rd/evolve/__init__.py Mon Nov 19 01:49:34 2018 +0000 @@ -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 4.3). +Mercurial version 4.4). New Config:: diff -r a07cd1d076bb -r 35dac5aadcfc hgext3rd/evolve/metadata.py --- a/hgext3rd/evolve/metadata.py Tue Nov 06 10:41:50 2018 +0530 +++ b/hgext3rd/evolve/metadata.py Mon Nov 19 01:49:34 2018 +0000 @@ -6,6 +6,6 @@ # GNU General Public License version 2 or any later version. __version__ = '8.4.0.dev' -testedwith = '4.3.2 4.4.2 4.5.2 4.6.2 4.7' -minimumhgversion = '4.3' +testedwith = '4.4.2 4.5.2 4.6.2 4.7' +minimumhgversion = '4.4' buglink = 'https://bz.mercurial-scm.org/' diff -r a07cd1d076bb -r 35dac5aadcfc hgext3rd/topic/__init__.py --- a/hgext3rd/topic/__init__.py Tue Nov 06 10:41:50 2018 +0530 +++ b/hgext3rd/topic/__init__.py Mon Nov 19 01:49:34 2018 +0000 @@ -179,8 +179,8 @@ __version__ = '0.13.0.dev' -testedwith = '4.3.3 4.4.2 4.5.2 4.6.2 4.7' -minimumhgversion = '4.3' +testedwith = '4.4.2 4.5.2 4.6.2 4.7' +minimumhgversion = '4.4' buglink = 'https://bz.mercurial-scm.org/' if util.safehasattr(registrar, 'configitem'):