Bug 1430928 - mozboot: install rust 1.24. r?Build draft
authorRalph Giles <giles@mozilla.com>
Thu, 15 Feb 2018 13:32:24 -0800
changeset 755857 7dd11fef8ea01a315d4432d094225f468121ebe6
parent 755855 7a5d91b70acf1941b84298aa2655057c27a4af18
child 755911 f5b014427ec0280a0116f369f196b09f1f1f4783
push id99305
push userbmo:giles@thaumas.net
push dateThu, 15 Feb 2018 21:34:20 +0000
reviewersBuild
bugs1430928
milestone60.0a1
Bug 1430928 - mozboot: install rust 1.24. r?Build Have `./mach boostrap` update users to at least rust 1.24.0, which is the current stable release. MozReview-Commit-ID: 2sma2p3BktJ
python/mozboot/mozboot/base.py
--- a/python/mozboot/mozboot/base.py
+++ b/python/mozboot/mozboot/base.py
@@ -145,17 +145,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('4.2.3')
 
 # Upgrade Python older than this.
 MODERN_PYTHON_VERSION = LooseVersion('2.7.3')
 
 # Upgrade rust older than this.
-MODERN_RUST_VERSION = LooseVersion('1.23.0')
+MODERN_RUST_VERSION = LooseVersion('1.24.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