Skip to content

Commit 9fda7c2

Browse files
committed
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 + 05fe2fc commit 9fda7c2

File tree

3 files changed

+29
-5
lines changed

3 files changed

+29
-5
lines changed

Cargo.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ dependencies = [
223223
"serde_ignored 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
224224
"serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)",
225225
"shell-escape 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
226-
"tar 0.4.19 (registry+https://github.com/rust-lang/crates.io-index)",
226+
"tar 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)",
227227
"tempfile 3.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
228228
"termcolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
229229
"toml 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -1007,7 +1007,7 @@ dependencies = [
10071007
"flate2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
10081008
"lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
10091009
"rayon 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
1010-
"tar 0.4.19 (registry+https://github.com/rust-lang/crates.io-index)",
1010+
"tar 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)",
10111011
"walkdir 2.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
10121012
"winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
10131013
"xz2 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -2939,7 +2939,7 @@ dependencies = [
29392939

29402940
[[package]]
29412941
name = "tar"
2942-
version = "0.4.19"
2942+
version = "0.4.20"
29432943
source = "registry+https://github.com/rust-lang/crates.io-index"
29442944
dependencies = [
29452945
"filetime 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -3506,7 +3506,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
35063506
"checksum syn 0.15.21 (registry+https://github.com/rust-lang/crates.io-index)" = "816b7af21405b011a23554ea2dc3f6576dc86ca557047c34098c1d741f10f823"
35073507
"checksum synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6"
35083508
"checksum synstructure 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "85bb9b7550d063ea184027c9b8c20ac167cd36d3e06b3a40bceb9d746dc1a7b7"
3509-
"checksum tar 0.4.19 (registry+https://github.com/rust-lang/crates.io-index)" = "69e16840a1e0a1f1a880b739ef1cc6a4b85496c99b8aa786ccffce6e0c15624c"
3509+
"checksum tar 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)" = "a303ba60a099fcd2aaa646b14d2724591a96a75283e4b7ed3d1a1658909d9ae2"
35103510
"checksum tempfile 3.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c4b103c6d08d323b92ff42c8ce62abcd83ca8efa7fd5bf7927efefec75f58c76"
35113511
"checksum tendril 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9de21546595a0873061940d994bbbc5c35f024ae4fd61ec5c5b159115684f508"
35123512
"checksum term 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5e6b677dd1e8214ea1ef4297f85dbcbed8e8cdddb561040cc998ca2551c37561"

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

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)