]> git.lizzy.rs Git - rust.git/commitdiff
Bump to 1.22.0
authorAlex Crichton <alex@alexcrichton.com>
Mon, 28 Aug 2017 15:55:45 +0000 (08:55 -0700)
committerAlex Crichton <alex@alexcrichton.com>
Thu, 31 Aug 2017 13:58:58 +0000 (06:58 -0700)
src/bootstrap/channel.rs
src/libstd/lib.rs
src/stage0.txt

index 9c1ae83d3828189362fe6af0a9e8858f5bcdd37a..6ed504dfe74a3178b6119b2e2ffa226f81a7b39d 100644 (file)
@@ -24,7 +24,7 @@
 use config::Config;
 
 // The version number
-pub const CFG_RELEASE_NUM: &str = "1.21.0";
+pub const CFG_RELEASE_NUM: &str = "1.22.0";
 
 // An optional number to put after the label, e.g. '.2' -> '-beta.2'
 // Be sure to make this starts with a dot to conform to semver pre-release
index b57067e35e9d95db0180cd983a5881eaeabb4cde..d149e1e99254de738803dee489b2eec5018a68ed 100644 (file)
 // Always use alloc_system during stage0 since we don't know if the alloc_*
 // crate the stage0 compiler will pick by default is enabled (e.g.
 // if the user has disabled jemalloc in `./configure`).
-// `force_alloc_system` is *only* intended as a workaround for local rebuilds
-// with a rustc without jemalloc.
-// The not(stage0+msvc) gates will only last until the next stage0 bump
-#![cfg_attr(all(
-        not(all(stage0, target_env = "msvc")),
-        any(stage0, feature = "force_alloc_system")),
-    feature(global_allocator))]
-#[cfg(all(
-    not(all(stage0, target_env = "msvc")),
-    any(stage0, feature = "force_alloc_system")))]
+#![cfg_attr(any(stage0, feature = "force_alloc_system"),
+            feature(global_allocator))]
+#[cfg(any(stage0, feature = "force_alloc_system"))]
 #[global_allocator]
 static ALLOC: alloc_system::System = alloc_system::System;
 
index 67cb282c09d5005f3c1f8d2c992d8134f0591a84..892679c1929162e9dc611d9e657dbaa77856370a 100644 (file)
@@ -12,9 +12,9 @@
 # source tarball for a stable release you'll likely see `1.x.0` for rustc and
 # `0.x.0` for Cargo where they were released on `date`.
 
-date: 2017-08-25
-rustc: nightly
-cargo: nightly
+date: 2017-08-29
+rustc: beta
+cargo: beta
 
 # When making a stable release the process currently looks like:
 #