Bug 1382743 - mozboot: Update rust to 1.19.0. r?mshal draft
authorRalph Giles <giles@mozilla.com>
Fri, 21 Jul 2017 15:36:26 -0700
changeset 614464 c49c3c4e1110f6c495f8edc73ab0e7f0f6816932
parent 614463 436ffdeb956db610229960281c301dadc1c9a25e
child 614494 0979d31e16e94060aebc1caff56e7325280adb61
push id70010
push userbmo:giles@thaumas.net
push dateMon, 24 Jul 2017 15:05:35 +0000
reviewersmshal
bugs1382743
milestone56.0a1
Bug 1382743 - mozboot: Update rust to 1.19.0. r?mshal Consider Rust toolchains prior to 1.19.0 old enough to update by the `mach bootstrap` command, in preparation for requiring that release during Firefox 57 nightly development. MozReview-Commit-ID: JaaM3sPDmzn
python/mozboot/mozboot/base.py
--- a/python/mozboot/mozboot/base.py
+++ b/python/mozboot/mozboot/base.py
@@ -146,17 +146,17 @@ ac_add_options --enable-artifact-builds
 # This should match OLDEST_NON_LEGACY_VERSION from
 # the hg setup wizard in version-control-tools.
 MODERN_MERCURIAL_VERSION = LooseVersion('3.7.3')
 
 # Upgrade Python older than this.
 MODERN_PYTHON_VERSION = LooseVersion('2.7.3')
 
 # Upgrade rust older than this.
-MODERN_RUST_VERSION = LooseVersion('1.18.0')
+MODERN_RUST_VERSION = LooseVersion('1.19.0')
 
 class BaseBootstrapper(object):
     """Base class for system bootstrappers."""
 
     def __init__(self, no_interactive=False):
         self.package_manager_updated = False
         self.no_interactive = no_interactive
         self.state_dir = None