changeset 6480:94d459a37494

branching: merge with stable
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Fri, 24 Mar 2023 13:26:15 +0000
parents 8a77122959e4 (diff) 64012821d6b0 (current diff)
children 38f6e7c0a743
files CHANGELOG hgext3rd/evolve/metadata.py hgext3rd/topic/__init__.py
diffstat 6 files changed, 20 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- a/CHANGELOG	Thu Mar 23 10:49:19 2023 -0300
+++ b/CHANGELOG	Fri Mar 24 13:26:15 2023 +0000
@@ -1,6 +1,15 @@
 Changelog
 =========
 
+11.1.0 - in progress
+--------------------
+
+  * evolve, pullbundle: drop compatibility with Mercurial 4.8
+
+topic (1.1.0)
+
+  * drop compatibility with Mercurial 4.8
+
 11.0.1 -- 2023-03-23
 --------------------
 
--- a/debian/control	Thu Mar 23 10:49:19 2023 -0300
+++ b/debian/control	Fri Mar 24 13:26:15 2023 +0000
@@ -7,7 +7,7 @@
  Pierre-Yves David <pierre-yves.david@logilab.fr>,
 Standards-Version: 4.3.0
 Build-Depends:
- mercurial (>= 4.8),
+ mercurial (>= 4.9),
  python3,
  debhelper (>= 10),
  dh-python,
@@ -26,7 +26,7 @@
  ${python3:Depends},
  ${misc:Depends},
  ${sphinxdoc:Depends},
- mercurial (>= 4.8),
+ mercurial (>= 4.9),
 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	Thu Mar 23 10:49:19 2023 -0300
+++ b/hgext3rd/evolve/__init__.py	Fri Mar 24 13:26:15 2023 +0000
@@ -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.8).
+Mercurial version 4.9).
 
 New Config::
 
--- a/hgext3rd/evolve/metadata.py	Thu Mar 23 10:49:19 2023 -0300
+++ b/hgext3rd/evolve/metadata.py	Fri Mar 24 13:26:15 2023 +0000
@@ -5,7 +5,7 @@
 # This software may be used and distributed according to the terms of the
 # GNU General Public License version 2 or any later version.
 
-__version__ = b'11.0.2.dev0'
-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 6.1 6.2 6.3 6.4'
-minimumhgversion = b'4.8'
+__version__ = b'11.1.0.dev0'
+testedwith = b'4.9 5.0 5.1 5.2 5.3 5.4 5.5 5.6 5.7 5.8 5.9 6.0 6.1 6.2 6.3 6.4'
+minimumhgversion = b'4.9'
 buglink = b'https://bz.mercurial-scm.org/'
--- a/hgext3rd/pullbundle.py	Thu Mar 23 10:49:19 2023 -0300
+++ b/hgext3rd/pullbundle.py	Fri Mar 24 13:26:15 2023 +0000
@@ -93,8 +93,8 @@
 from mercurial.i18n import _
 
 __version__ = b'0.2.0.dev'
-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 6.1'
-minimumhgversion = b'4.8'
+testedwith = b'4.9 5.0 5.1 5.2 5.3 5.4 5.5 5.6 5.7 5.8 5.9 6.0 6.1 6.2 6.3'
+minimumhgversion = b'4.9'
 buglink = b'https://bz.mercurial-scm.org/'
 
 cmdtable = {}
--- a/hgext3rd/topic/__init__.py	Thu Mar 23 10:49:19 2023 -0300
+++ b/hgext3rd/topic/__init__.py	Fri Mar 24 13:26:15 2023 +0000
@@ -233,10 +233,10 @@
               b'log.topic': b'green_background',
               }
 
-__version__ = b'1.0.2.dev0'
+__version__ = b'1.1.0.dev0'
 
-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 6.1 6.2 6.3 6.4'
-minimumhgversion = b'4.8'
+testedwith = b'4.9 5.0 5.1 5.2 5.3 5.4 5.5 5.6 5.7 5.8 5.9 6.0 6.1 6.2 6.3 6.4'
+minimumhgversion = b'4.9'
 buglink = b'https://bz.mercurial-scm.org/'
 
 configtable = {}