Skip to content

Rollup of 8 pull requests #140890

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

Closed
wants to merge 20 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
b208706
Add `DerefMut` for `Lazy[Cell/Lock]` that delegates to the unstable `…
ChayimFriedman2 Nov 16, 2024
e7efab9
remove intrinsics::drop_in_place
RalfJung Apr 22, 2025
ca42f15
update hermit-abi to 0.5.1
mkroening May 7, 2025
ae25c39
Update documentation of OnceLock::get_or_init.
veluca93 May 8, 2025
e7247df
Use intrinsics for `{f16,f32,f64,f128}::{minimum,maximum}` operations
Urgau May 8, 2025
79dfd0a
remove 'unordered' atomic intrinsics
RalfJung May 5, 2025
dc69020
Add intrinsic fallback for `{minimum,maximum}{16,32,64,128}`
Urgau May 8, 2025
3fa98a1
rustdoc: add a handle that makes sidebar resizing more obvious
notriddle Apr 8, 2025
3c9e1f9
rustdoc: add tooltip to resize track
notriddle Apr 9, 2025
e6e5206
rustdoc: use a different style of grip track
notriddle Apr 11, 2025
10980be
RELEASES.md: fix nonsensical ~ operator
pthariensflame May 9, 2025
2c5f64d
RELEASES.md: fix unbalanced and unneeded `}`
pthariensflame May 9, 2025
c9e74b9
Rollup merge of #129334 - ChayimFriedman2:more-lazy-methods, r=Amanieu
matthiaskrgr May 10, 2025
e0b4468
Rollup merge of #139562 - notriddle:notriddle/ew-resize, r=GuillaumeG…
matthiaskrgr May 10, 2025
2bff68a
Rollup merge of #140151 - RalfJung:drop_in_place-is-not-an-intrinsic,…
matthiaskrgr May 10, 2025
f228d8c
Rollup merge of #140660 - RalfJung:more-order, r=WaffleLapkin
matthiaskrgr May 10, 2025
ec129b7
Rollup merge of #140783 - veluca93:oncelock-docs, r=jhpratt
matthiaskrgr May 10, 2025
57c2efd
Rollup merge of #140789 - hermit-os:hermit-abi-0.5.1, r=Mark-Simulacrum
matthiaskrgr May 10, 2025
efd4b46
Rollup merge of #140792 - Urgau:minimum-maximum-intrinsics, r=scottmc…
matthiaskrgr May 10, 2025
58770f4
Rollup merge of #140879 - pthariensflame:patch-1, r=pietroalbini
matthiaskrgr May 10, 2025
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
RELEASES.md: fix unbalanced and unneeded }
  • Loading branch information
pthariensflame authored May 9, 2025
commit 2c5f64d55aef4a2e64350e73243ee5a92ec3a2ea
2 changes: 1 addition & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Version 1.87.0 (2025-05-15)
Language
--------
- [Stabilize `asm_goto` feature](https://github.com/rust-lang/rust/pull/133870)
- [Allow parsing open beginning ranges (`..EXPR`) after unary operators `!`, `-`, and `*`}](https://github.com/rust-lang/rust/pull/134900).
- [Allow parsing open beginning ranges (`..EXPR`) after unary operators `!`, `-`, and `*`](https://github.com/rust-lang/rust/pull/134900).
- [Don't require method impls for methods with `Self: Sized` bounds in `impl`s for unsized types](https://github.com/rust-lang/rust/pull/135480)
- [Stabilize `feature(precise_capturing_in_traits)` allowing `use<...>` bounds on return position `impl Trait` in `trait`s](https://github.com/rust-lang/rust/pull/138128)

Expand Down
Loading