changeset 6024:18aa756353a7

evolve: formally remove 4.6 support
author Anton Shestakov <av6@dwimlabs.net>
date Sat, 04 Sep 2021 19:16:17 +0300
parents 6f6b6218b6fe
children b1529f0a30ce
files CHANGELOG debian/control hgext3rd/evolve/__init__.py hgext3rd/evolve/metadata.py hgext3rd/pullbundle.py hgext3rd/topic/__init__.py
diffstat 6 files changed, 13 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- a/CHANGELOG	Tue Jul 27 14:02:08 2021 +0530
+++ b/CHANGELOG	Sat Sep 04 19:16:17 2021 +0300
@@ -13,6 +13,8 @@
   * evolve: remove experimental.obshashrange.lru-size docs, that config option
     didn't do anything for a long time
 
+  * evolve, topic, pullbundle: drop compatibility with Mercurial 4.6
+
 10.3.3 -- 2021-08-13
 --------------------
 
--- a/debian/control	Tue Jul 27 14:02:08 2021 +0530
+++ b/debian/control	Sat Sep 04 19:16:17 2021 +0300
@@ -7,7 +7,7 @@
  Pierre-Yves David <pierre-yves.david@logilab.fr>,
 Standards-Version: 4.3.0
 Build-Depends:
- mercurial (>= 4.6),
+ mercurial (>= 4.7),
  python,
  python3,
  debhelper (>= 10),
@@ -28,7 +28,7 @@
  ${python3:Depends},
  ${misc:Depends},
  ${sphinxdoc:Depends},
- mercurial (>= 4.6),
+ mercurial (>= 4.7),
 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	Tue Jul 27 14:02:08 2021 +0530
+++ b/hgext3rd/evolve/__init__.py	Sat Sep 04 19:16:17 2021 +0300
@@ -31,9 +31,9 @@
 
 Some improvement and bug fixes available in newer version of Mercurial are also
 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.6).
+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).
 
 New Config::
 
--- a/hgext3rd/evolve/metadata.py	Tue Jul 27 14:02:08 2021 +0530
+++ b/hgext3rd/evolve/metadata.py	Sat Sep 04 19:16:17 2021 +0300
@@ -6,6 +6,6 @@
 # GNU General Public License version 2 or any later version.
 
 __version__ = b'10.4.0.dev'
-testedwith = b'4.6.2 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.6'
+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'
 buglink = b'https://bz.mercurial-scm.org/'
--- a/hgext3rd/pullbundle.py	Tue Jul 27 14:02:08 2021 +0530
+++ b/hgext3rd/pullbundle.py	Sat Sep 04 19:16:17 2021 +0300
@@ -94,8 +94,8 @@
 from mercurial.i18n import _
 
 __version__ = b'0.1.3.dev'
-testedwith = b'4.6.2 4.7 4.8 4.9 5.0 5.1 5.2 5.3 5.4 5.5'
-minimumhgversion = b'4.6'
+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'
 buglink = b'https://bz.mercurial-scm.org/'
 
 cmdtable = {}
--- a/hgext3rd/topic/__init__.py	Tue Jul 27 14:02:08 2021 +0530
+++ b/hgext3rd/topic/__init__.py	Sat Sep 04 19:16:17 2021 +0300
@@ -233,8 +233,8 @@
 
 __version__ = b'0.23.0.dev'
 
-testedwith = b'4.6.2 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.6'
+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'
 buglink = b'https://bz.mercurial-scm.org/'
 
 if util.safehasattr(registrar, 'configitem'):