Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

beta backport rollup #56102

Merged
merged 31 commits into from
Nov 21, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
bd27131
Add helpful logging statements.
davidtwco Oct 26, 2018
6c1d718
Test for cast causing static promotion failure.
davidtwco Oct 26, 2018
0c3dfe1
Refactor and add `PlaceContext::AscribeUserTy`.
davidtwco Oct 26, 2018
8a6f4c8
remove "approx env bounds" if we already know from trait
nikomatsakis Nov 18, 2018
410f520
improve debug output related to bound calculation
nikomatsakis Nov 16, 2018
84afecc
handle trait objects formed from traits with `Self::Foo: 'a` clauses
nikomatsakis Nov 16, 2018
0a26e79
Rewrite `...` as `..=` as a MachineApplicable 2018 idiom lint
varkor Nov 10, 2018
9ab3b0f
Use non-short suggestion for parenthesised ..=
varkor Nov 10, 2018
4541827
don't inline `pub use some_crate` unless directly asked to
QuietMisdreavus Nov 9, 2018
1d1213f
Increase `Duration` approximate equal threshold to 1us
alexcrichton Nov 19, 2018
e2a9ee4
squashed form of #54145
nrc Aug 31, 2018
14bf347
Adjust Ids of path segments in visibility modifiers
nrc Oct 29, 2018
beb61b4
save analysis: don't dump macro refs
nrc Oct 30, 2018
9201260
save-analysis: make sure we save the def for the last segment of a path
nrc Oct 30, 2018
0af0260
save-analysis: be even more aggressive about ignorning macro-generate…
nrc Nov 13, 2018
396e009
save-analysis: fallback to using path id
nrc Nov 19, 2018
90580ca
save-analysis: Don't panic for macro-generated use globs
Xanewok Nov 11, 2018
ddeb85f
Add temporary renames to manifests for rustfmt/clippy
alexcrichton Nov 19, 2018
c8feb63
revert
newpavlov Nov 18, 2018
224eb83
tests
newpavlov Nov 18, 2018
beaf59f
fix test
newpavlov Nov 18, 2018
a830c06
Fix stability hole with `static _`
oli-obk Nov 15, 2018
46dd614
Update stderr file
oli-obk Nov 16, 2018
feede07
Updated RELEASES.md for 1.31.0
Nov 4, 2018
74bcc4c
Update releases to add rename dependencies feature
Aaronepower Nov 20, 2018
01e090d
Fix Rustdoc ICE when checking blanket impls
Aaron1011 Oct 22, 2018
0f84c8e
Update clippy module to fix breakage
alexcrichton Nov 20, 2018
5ea8c58
Update RLS and Rustfmt
nikomatsakis Nov 20, 2018
8129c41
Update the `cargo_metadata` dependency
alexcrichton Nov 20, 2018
e6c93e7
Stabilize `extern_crate_item_prelude`
petrochenkov Nov 17, 2018
93704f2
Add a couple more tests
petrochenkov Nov 17, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
77 changes: 77 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,80 @@
Version 1.31.0 (2018-12-06)
==========================

Language
--------
- 🎉 [This version marks the release of the 2018 edition of Rust.][54057] 🎉
- [New lifetime elision rules now allow for eliding lifetimes in functions and
impl headers.][54778] E.g. `impl<'a> Reader for BufReader<'a> {}` can now be
`impl Reader for BufReader<'_> {}`. Lifetimes are still required to be defined
in structs.
- [You can now define and use `const` functions.][54835] These are currently
a strict minimal subset of the [const fn RFC][RFC-911]. Refer to the
[language reference][const-reference] for what exactly is available.
- [You can now use tool lints, which allow you to scope lints from external
tools using attributes.][54870] E.g. `#[allow(clippy::filter_map)]`.
- [`#[no_mangle]` and `#[export_name]` attributes can now be located anywhere in
a crate, not just in exported functions.][54451]
- [You can now use parentheses in pattern matches.][54497]

Compiler
--------
- [Updated musl to 1.1.20][54430]

Libraries
---------
- [You can now convert `num::NonZero*` types to their raw equivalvents using the
`From` trait.][54240] E.g. `u8` now implements `From<NonZeroU8>`.
- [You can now convert a `&Option<T>` into `Option<&T>` and `&mut Option<T>`
into `Option<&mut T>` using the `From` trait.][53218]
- [You can now multiply (`*`) a `time::Duration` by a `u32`.][52813]


Stabilized APIs
---------------
- [`slice::align_to`]
- [`slice::align_to_mut`]
- [`slice::chunks_exact`]
- [`slice::chunks_exact_mut`]
- [`slice::rchunks`]
- [`slice::rchunks_mut`]
- [`slice::rchunks_exact`]
- [`slice::rchunks_exact_mut`]
- [`Option::replace`]

Cargo
-----
- [Cargo will now download crates in parallel using HTTP/2.][cargo/6005]
- [You can now rename packages in your Cargo.toml][cargo/6319] We have a guide
on [how to use the `package` key in your dependencies.][cargo-rename-reference]

[52813]: https://github.com/rust-lang/rust/pull/52813/
[53218]: https://github.com/rust-lang/rust/pull/53218/
[53555]: https://github.com/rust-lang/rust/issues/53555/
[54057]: https://github.com/rust-lang/rust/pull/54057/
[54240]: https://github.com/rust-lang/rust/pull/54240/
[54430]: https://github.com/rust-lang/rust/pull/54430/
[54451]: https://github.com/rust-lang/rust/pull/54451/
[54497]: https://github.com/rust-lang/rust/pull/54497/
[54778]: https://github.com/rust-lang/rust/pull/54778/
[54835]: https://github.com/rust-lang/rust/pull/54835/
[54870]: https://github.com/rust-lang/rust/pull/54870/
[RFC-911]: https://github.com/rust-lang/rfcs/pull/911
[`Option::replace`]: https://doc.rust-lang.org/std/option/enum.Option.html#method.replace
[`slice::align_to_mut`]: https://doc.rust-lang.org/std/primitive.slice.html#method.align_to_mut
[`slice::align_to`]: https://doc.rust-lang.org/std/primitive.slice.html#method.align_to
[`slice::chunks_exact_mut`]: https://doc.rust-lang.org/std/primitive.slice.html#method.chunks_exact_mut
[`slice::chunks_exact`]: https://doc.rust-lang.org/std/primitive.slice.html#method.chunks_exact
[`slice::rchunks_exact_mut`]: https://doc.rust-lang.org/std/primitive.slice.html#method.rchunks_mut
[`slice::rchunks_exact`]: https://doc.rust-lang.org/std/primitive.slice.html#method.rchunks_exact
[`slice::rchunks_mut`]: https://doc.rust-lang.org/std/primitive.slice.html#method.rchunks_mut
[`slice::rchunks`]: https://doc.rust-lang.org/std/primitive.slice.html#method.rchunks
[cargo/6005]: https://github.com/rust-lang/cargo/pull/6005/
[cargo/6319]: https://github.com/rust-lang/cargo/pull/6319/
[cargo-rename-reference]: https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#renaming-dependencies-in-cargotoml
[const-reference]: https://doc.rust-lang.org/reference/items/functions.html#const-functions


Version 1.30.0 (2018-10-25)
==========================

Expand Down
Loading