Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
1cfc187
document PartialEq, PartialOrd, Ord requirements more explicitly
RalfJung May 24, 2021
a7abd13
make Ord doc style consistent with the other two; explain which prope…
RalfJung May 27, 2021
7dd2577
Fix linkchecker redirection tests.
ehuss Jun 8, 2021
bbd0532
Test the linkchecker itself.
ehuss Jun 8, 2021
dbc8a1c
Change the linkchecker self-tests to validate more output.
ehuss Jun 8, 2021
1e9f0b3
linkchecker: Fix bug where fragment errors printed the wrong path.
ehuss Jun 9, 2021
052d77e
Account for bad placeholder errors on consts/statics with trait objects
JohnTitor Jun 10, 2021
45675f3
wording
RalfJung Jun 15, 2021
bde9570
Lazify is_really_default condition in the RustdocGUI bootstrap step
the8472 Jun 8, 2021
87fb7cb
Updated release note
0xPoe Jun 18, 2021
1f42e9d
Specify the kind of the item for E0121
fee1-dead Jun 18, 2021
6d99f54
Updated tests to reflect specified types in E0121
fee1-dead Jun 18, 2021
8b51854
fix panic-safety in specialized Zip::next_back
the8472 Jun 19, 2021
b4734b7
disable test on platforms that don't support unwinding
the8472 Jun 20, 2021
3f0729f
expand: Move some more derive logic to `rustc_builtin_macros`
petrochenkov Jun 20, 2021
d9fd5ea
cfg_eval: Replace multiple `unwrap`s with a single `unwrap`
petrochenkov Jun 20, 2021
37d0d27
Do not set depth to 0 in fully_expand_fragment
fee1-dead Jun 20, 2021
cde49cf
Rollup merge of #83739 - JohnTitor:issue-75889, r=estebank
JohnTitor Jun 21, 2021
b491517
Rollup merge of #85637 - RalfJung:partial-ord, r=m-ou-se
JohnTitor Jun 21, 2021
b9b6a09
Rollup merge of #86152 - the8472:lazify-npm-queries, r=Mark-Simulacrum
JohnTitor Jun 21, 2021
63e1fd2
Rollup merge of #86156 - ehuss:linkchecker-fixes, r=Mark-Simulacrum
JohnTitor Jun 21, 2021
e972385
Rollup merge of #86223 - fee1-dead:better-E0121, r=petrochenkov
JohnTitor Jun 21, 2021
4a54179
Rollup merge of #86427 - hi-rustin:rustin-patch-release-note, r=Mark-…
JohnTitor Jun 21, 2021
29a1040
Rollup merge of #86452 - the8472:fix-zip-drop-safety, r=m-ou-se
JohnTitor Jun 21, 2021
989dccc
Rollup merge of #86484 - fee1-dead:builtin-macro-recursion, r=petroch…
JohnTitor Jun 21, 2021
d449ce1
Rollup merge of #86491 - petrochenkov:derefact, r=Aaron1011
JohnTitor Jun 21, 2021
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
Prev Previous commit
Next Next commit
Updated release note
  • Loading branch information
0xPoe committed Jun 18, 2021
commit 87fb7cb58f48e047f46777c925aa9b124dd77d91
2 changes: 2 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -1749,6 +1749,7 @@ Language
- [You can now use `#[repr(transparent)]` on univariant `enum`s.][68122] Meaning
that you can create an enum that has the exact layout and ABI of the type
it contains.
- [You can now use outer attribute procedural macros on inline modules.][64273]
- [There are some *syntax-only* changes:][67131]
- `default` is syntactically allowed before items in `trait` definitions.
- Items in `impl`s (i.e. `const`s, `type`s, and `fn`s) may syntactically
Expand Down Expand Up @@ -1810,6 +1811,7 @@ Compatibility Notes
[67935]: https://github.com/rust-lang/rust/pull/67935/
[68339]: https://github.com/rust-lang/rust/pull/68339/
[68122]: https://github.com/rust-lang/rust/pull/68122/
[64273]: https://github.com/rust-lang/rust/pull/64273/
[67712]: https://github.com/rust-lang/rust/pull/67712/
[67887]: https://github.com/rust-lang/rust/pull/67887/
[67131]: https://github.com/rust-lang/rust/pull/67131/
Expand Down