Bug 1430934 - mozboot: Update to rust 1.23.0. draft
authorRalph Giles <giles@mozilla.com>
Tue, 16 Jan 2018 15:07:14 -0800
changeset 721292 3d6c7cc6abff9a97c74fc29d78c79f713c46f0a3
parent 721208 b2cb61e83ac50115a28f04aaa8a32d4db90aad23
child 746281 2fab442e1ebfb249c68283e0443b3bd4c855823c
push id95781
push userbmo:giles@thaumas.net
push dateTue, 16 Jan 2018 23:49:23 +0000
bugs1430934
milestone59.0a1
Bug 1430934 - mozboot: Update to rust 1.23.0. Have `./mach boostrap` update users to at least rust 1.23.0, which is the current stable release. MozReview-Commit-ID: 7ukx7shu07e
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('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.22.0')
+MODERN_RUST_VERSION = LooseVersion('1.23.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