Skip to content

Commit 24348d8

Browse files
committedJan 16, 2019
Auto merge of #57600 - rust-lang:stable-next, r=alexcrichton
Rust 1.32.0 stable release Also cherry-picked the following beta-accepted PRs: * #57519: Correct RELEASES.md for 1.32.0 r? @Mark-Simulacrum cc @rust-lang/release
2 parents 31d631f + fe0fc3c commit 24348d8

File tree

4 files changed

+29
-2
lines changed

4 files changed

+29
-2
lines changed
 

‎RELEASES.md

+24
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,12 @@ Stabilized APIs
121121
- [`i64::from_be_bytes`]
122122
- [`i64::from_le_bytes`]
123123
- [`i64::from_ne_bytes`]
124+
- [`i128::to_be_bytes`]
125+
- [`i128::to_le_bytes`]
126+
- [`i128::to_ne_bytes`]
127+
- [`i128::from_be_bytes`]
128+
- [`i128::from_le_bytes`]
129+
- [`i128::from_ne_bytes`]
124130
- [`isize::to_be_bytes`]
125131
- [`isize::to_le_bytes`]
126132
- [`isize::to_ne_bytes`]
@@ -151,6 +157,12 @@ Stabilized APIs
151157
- [`u64::from_be_bytes`]
152158
- [`u64::from_le_bytes`]
153159
- [`u64::from_ne_bytes`]
160+
- [`u128::to_be_bytes`]
161+
- [`u128::to_le_bytes`]
162+
- [`u128::to_ne_bytes`]
163+
- [`u128::from_be_bytes`]
164+
- [`u128::from_le_bytes`]
165+
- [`u128::from_ne_bytes`]
154166
- [`usize::to_be_bytes`]
155167
- [`usize::to_le_bytes`]
156168
- [`usize::to_ne_bytes`]
@@ -208,6 +220,12 @@ Compatibility Notes
208220
[`UnsafeCell::get`]: https://doc.rust-lang.org/std/cell/struct.UnsafeCell.html#method.get
209221
[`slice::as_ptr`]: https://doc.rust-lang.org/std/primitive.slice.html#method.as_ptr
210222
[`char::is_ascii`]: https://doc.rust-lang.org/std/primitive.char.html#method.is_ascii
223+
[`i128::from_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i128.html#method.from_be_bytes
224+
[`i128::from_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i128.html#method.from_le_bytes
225+
[`i128::from_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i128.html#method.from_ne_bytes
226+
[`i128::to_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i128.html#method.to_be_bytes
227+
[`i128::to_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i128.html#method.to_le_bytes
228+
[`i128::to_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i128.html#method.to_ne_bytes
211229
[`i16::from_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i16.html#method.from_be_bytes
212230
[`i16::from_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i16.html#method.from_le_bytes
213231
[`i16::from_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i16.html#method.from_ne_bytes
@@ -240,6 +258,12 @@ Compatibility Notes
240258
[`isize::to_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.isize.html#method.to_ne_bytes
241259
[`iter::empty`]: https://doc.rust-lang.org/std/iter/fn.empty.html
242260
[`str::as_ptr`]: https://doc.rust-lang.org/std/primitive.str.html#method.as_ptr
261+
[`u128::from_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u128.html#method.from_be_bytes
262+
[`u128::from_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u128.html#method.from_le_bytes
263+
[`u128::from_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u128.html#method.from_ne_bytes
264+
[`u128::to_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u128.html#method.to_be_bytes
265+
[`u128::to_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u128.html#method.to_le_bytes
266+
[`u128::to_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u128.html#method.to_ne_bytes
243267
[`u16::from_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u16.html#method.from_be_bytes
244268
[`u16::from_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u16.html#method.from_le_bytes
245269
[`u16::from_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u16.html#method.from_ne_bytes

‎appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ environment:
9393
--target=i586-pc-windows-msvc
9494
--enable-full-tools
9595
--enable-profiler
96-
SCRIPT: python x.py dist
96+
SCRIPT: python x.py dist -vv
9797
DIST_REQUIRE_ALL_TOOLS: 1
9898
DEPLOY: 1
9999
CI_JOB_NAME: dist-i686-msvc

‎src/bootstrap/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1168,6 +1168,9 @@ impl Build {
11681168
/// Copies a file from `src` to `dst`
11691169
pub fn copy(&self, src: &Path, dst: &Path) {
11701170
if self.config.dry_run { return; }
1171+
if dst.display().to_string().contains("rust-std") {
1172+
self.verbose(&format!("copying {:?} => {:?}", src, dst));
1173+
}
11711174
let _ = fs::remove_file(&dst);
11721175
let metadata = t!(src.symlink_metadata());
11731176
if metadata.file_type().is_symlink() {

‎src/ci/run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ fi
5252
#
5353
# FIXME: need a scheme for changing this `nightly` value to `beta` and `stable`
5454
# either automatically or manually.
55-
export RUST_RELEASE_CHANNEL=beta
55+
export RUST_RELEASE_CHANNEL=stable
5656
if [ "$DEPLOY$DEPLOY_ALT" != "" ]; then
5757
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --release-channel=$RUST_RELEASE_CHANNEL"
5858
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-llvm-static-stdcpp"

0 commit comments

Comments
 (0)