Skip to content

Commit 642e063

Browse files
committed
Auto merge of #56911 - rust-lang:stable-1.31.1, r=Mark-Simulacrum
[stable] 1.31.1 point release Rust 1.31.1 is scheduled to be released on Thursday 20th, with the following changes: * #56562: Update libc version required by rustc *(different patch made by me)* * #56615: Update the book to fix some edition-related bugs * rls submodule update to [`b379ef7`](rust-lang/rls@b379ef7), including: * rust-lang/rls#1170: Fix for common infinte loop regression * rust-lang/rls#1171: Can't jump to std defs r? @Mark-Simulacrum cc @rust-lang/core @rust-lang/release
2 parents abe02ce + ef6c008 commit 642e063

File tree

7 files changed

+68
-52
lines changed

7 files changed

+68
-52
lines changed

RELEASES.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
Version 1.31.1 (2018-12-20)
2+
===========================
3+
4+
- [Fix Rust failing to build on `powerpc-unknown-netbsd`][56562]
5+
- [Fix broken go-to-definition in RLS][rls/1171]
6+
- [Fix infinite loop on hover in RLS][rls/1170]
7+
8+
[56562]: https://github.com/rust-lang/rust/pull/56562
9+
[rls/1171]: https://github.com/rust-lang/rls/issues/1171
10+
[rls/1170]: https://github.com/rust-lang/rls/pull/1170
11+
112
Version 1.31.0 (2018-12-06)
213
==========================
314

src/Cargo.lock

+48-48
Large diffs are not rendered by default.

src/Cargo.toml

+5
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,8 @@ rustc-workspace-hack = { path = 'tools/rustc-workspace-hack' }
6565
[patch."https://github.com/rust-lang/rust-clippy"]
6666
clippy_lints = { path = "tools/clippy/clippy_lints" }
6767
rustc_tools_util = { path = "tools/clippy/rustc_tools_util" }
68+
69+
# Old Clippy repository
70+
[patch."https://github.com/rust-lang-nursery/rust-clippy"]
71+
clippy_lints = { path = "tools/clippy/clippy_lints" }
72+
rustc_tools_util = { path = "tools/clippy/rustc_tools_util" }

src/bootstrap/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ filetime = "0.2"
4040
num_cpus = "1.0"
4141
getopts = "0.2"
4242
cc = "1.0.1"
43-
libc = "0.2"
43+
libc = "0.2.44"
4444
serde = "1.0.8"
4545
serde_derive = "1.0.8"
4646
serde_json = "1.0.2"

src/bootstrap/channel.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ use Build;
2424
use config::Config;
2525

2626
// The version number
27-
pub const CFG_RELEASE_NUM: &str = "1.31.0";
27+
pub const CFG_RELEASE_NUM: &str = "1.31.1";
2828

2929
pub struct GitInfo {
3030
inner: Option<Info>,

src/doc/book

Submodule book updated 67 files

src/tools/rls

Submodule rls updated from 6610526 to da98b4d

0 commit comments

Comments
 (0)