reviewboard: mark extension as compatible with Mercurial 4.4 (bug 1413628); r?glob draft
authorGregory Szorc <gps@mozilla.com>
Wed, 01 Nov 2017 21:46:43 -0700
changeset 11788 43508692ed23f922bd7738324e0ccd2082686ccb
parent 11787 37f0b566d740352a33fb5eae5a9e132bf256b353
push id1816
push usergszorc@mozilla.com
push dateThu, 02 Nov 2017 19:46:54 +0000
reviewersglob
bugs1413628
reviewboard: mark extension as compatible with Mercurial 4.4 (bug 1413628); r?glob With the previous commit, all tests now pass with Mercurial 4.4. We can mark the extension as compatible. MozReview-Commit-ID: KcN7YGLz2Lt
hgext/reviewboard/client.py
hgext/reviewboard/server.py
--- a/hgext/reviewboard/client.py
+++ b/hgext/reviewboard/client.py
@@ -85,17 +85,17 @@ from mozhg.auth import (
     configureautobmoapikeyauth,
     register_config_items,
 )
 from mozhg.rewrite import (
     newparents,
     replacechangesets,
 )
 
-testedwith = '4.1 4.2 4.3'
+testedwith = '4.1 4.2 4.3 4.4'
 minimumhgversion = '4.1'
 buglink = 'https://bugzilla.mozilla.org/enter_bug.cgi?product=MozReview&component=Integration%3A%20Mercurial'
 
 cmdtable = {}
 
 # Mercurial 4.3 introduced registrar.command as a replacement for
 # cmdutil.command.
 if util.safehasattr(registrar, 'command'):
--- a/hgext/reviewboard/server.py
+++ b/hgext/reviewboard/server.py
@@ -56,17 +56,17 @@ execfile(os.path.join(OUR_DIR, '..', 'bo
 
 with demandimport.deactivated():
     try:
         import hgrb.proto
     except ImportError:
         sys.path.insert(0, OUR_DIR)
         import hgrb.proto
 
-testedwith = '4.1 4.2 4.3'
+testedwith = '4.1 4.2 4.3 4.4'
 minimumhgversion = '4.1'
 
 cmdtable = {}
 
 # Mercurial 4.3 introduced registrar.command as a replacement for
 # cmdutil.command.
 if util.safehasattr(registrar, 'command'):
     command = registrar.command(cmdtable)