Mercurial > evolve
changeset 6133:6b619b4edbbe
evolve: formally remove 4.7 support
author | Anton Shestakov <av6@dwimlabs.net> |
---|---|
date | Fri, 18 Feb 2022 16:04:23 +0300 |
parents | cd07d6bd4e2a |
children | 0fa9cc8075aa |
files | CHANGELOG debian/control hgext3rd/evolve/__init__.py hgext3rd/evolve/metadata.py hgext3rd/pullbundle.py hgext3rd/topic/__init__.py |
diffstat | 6 files changed, 14 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/CHANGELOG Wed Nov 03 22:59:17 2021 +0530 +++ b/CHANGELOG Fri Feb 18 16:04:23 2022 +0300 @@ -1,6 +1,11 @@ Changelog ========= +10.5.0 - in progress +-------------------- + + * evolve, topic, pullbundle: drop compatibility with Mercurial 4.7 + 10.4.1 -- 2021-11-19 --------------------
--- a/debian/control Wed Nov 03 22:59:17 2021 +0530 +++ b/debian/control Fri Feb 18 16:04:23 2022 +0300 @@ -7,7 +7,7 @@ Pierre-Yves David <pierre-yves.david@logilab.fr>, Standards-Version: 4.3.0 Build-Depends: - mercurial (>= 4.7), + mercurial (>= 4.8), python, python3, debhelper (>= 10), @@ -28,7 +28,7 @@ ${python3:Depends}, ${misc:Depends}, ${sphinxdoc:Depends}, - mercurial (>= 4.7), + mercurial (>= 4.8), Built-Using: ${sphinxdoc:Built-Using} Description: evolve extension for Mercurial This package provides the experimental "evolve" extension for the Mercurial
--- a/hgext3rd/evolve/__init__.py Wed Nov 03 22:59:17 2021 +0530 +++ b/hgext3rd/evolve/__init__.py Fri Feb 18 16:04:23 2022 +0300 @@ -33,7 +33,7 @@ backported to older version of Mercurial by this extension. Some older experimental protocols are also supported for a longer time in the extension to help people transitioning. (The extension is currently compatible down to -Mercurial version 4.7). +Mercurial version 4.8). New Config::
--- a/hgext3rd/evolve/metadata.py Wed Nov 03 22:59:17 2021 +0530 +++ b/hgext3rd/evolve/metadata.py Fri Feb 18 16:04:23 2022 +0300 @@ -6,6 +6,6 @@ # GNU General Public License version 2 or any later version. __version__ = b'10.5.0.dev' -testedwith = b'4.7 4.8 4.9 5.0 5.1 5.2 5.3 5.4 5.5 5.6 5.7 5.8 5.9 6.0' -minimumhgversion = b'4.7' +testedwith = b'4.8 4.9 5.0 5.1 5.2 5.3 5.4 5.5 5.6 5.7 5.8 5.9 6.0' +minimumhgversion = b'4.8' buglink = b'https://bz.mercurial-scm.org/'
--- a/hgext3rd/pullbundle.py Wed Nov 03 22:59:17 2021 +0530 +++ b/hgext3rd/pullbundle.py Fri Feb 18 16:04:23 2022 +0300 @@ -93,8 +93,8 @@ from mercurial.i18n import _ __version__ = b'0.1.3.dev' -testedwith = b'4.7 4.8 4.9 5.0 5.1 5.2 5.3 5.4 5.5 5.6 5.7 5.8 5.9' -minimumhgversion = b'4.7' +testedwith = b'4.8 4.9 5.0 5.1 5.2 5.3 5.4 5.5 5.6 5.7 5.8 5.9' +minimumhgversion = b'4.8' buglink = b'https://bz.mercurial-scm.org/' cmdtable = {}
--- a/hgext3rd/topic/__init__.py Wed Nov 03 22:59:17 2021 +0530 +++ b/hgext3rd/topic/__init__.py Fri Feb 18 16:04:23 2022 +0300 @@ -233,8 +233,8 @@ __version__ = b'0.24.0.dev' -testedwith = b'4.7 4.8 4.9 5.0 5.1 5.2 5.3 5.4 5.5 5.6 5.7 5.8 5.9 6.0' -minimumhgversion = b'4.7' +testedwith = b'4.8 4.9 5.0 5.1 5.2 5.3 5.4 5.5 5.6 5.7 5.8 5.9 6.0' +minimumhgversion = b'4.8' buglink = b'https://bz.mercurial-scm.org/' if util.safehasattr(registrar, 'configitem'):