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

Rollup of 7 pull requests #129442

Closed
wants to merge 28 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
0b87af9
Add `-Z embed-source=yes` to embed source code in DWARF debug info
Mrmaxmeier Apr 27, 2024
608901b
Add run-make test for -Zembed-source=yes
Mrmaxmeier Jul 16, 2024
e65a48e
Document WebAssembly target feature expectations
alexcrichton Aug 1, 2024
dea3846
Review comments
alexcrichton Aug 1, 2024
927633c
Add a note about libraries and `#[target_feature]`
alexcrichton Aug 1, 2024
cfe3ea6
Add new page to SUMMARY.md
alexcrichton Aug 1, 2024
ce7f1b7
Ignore two new doc blocks in testing
alexcrichton Aug 1, 2024
b6f65a4
Document on-by-default features
alexcrichton Aug 1, 2024
a5082ef
Appease tidy
alexcrichton Aug 1, 2024
06197ef
Review comments
alexcrichton Aug 2, 2024
6899f5a
-Zembed-source: Don't try to warn about incompatible codegen backends
Mrmaxmeier Aug 6, 2024
7d2595f
Review comments
alexcrichton Aug 9, 2024
6a8ec81
Add a missing compatibility note in the 1.80.0 release notes
apiraino Aug 19, 2024
cd7cc3f
Update RELEASES.md
apiraino Aug 19, 2024
7613eee
Update RELEASES.md
apiraino Aug 19, 2024
dbad758
Stabilize feature `char_indices_offset`
eduardosm Aug 19, 2024
87e4b67
Update RELEASES.md
apiraino Aug 22, 2024
6a878a9
Fix handling of macro arguments within the `dropping_copy_types lint
Urgau Aug 22, 2024
f1fac42
llvm 20: adapt integer comparison tests
krasimirgg Aug 21, 2024
4dd9be4
Enable `f16` tests on x86 and x86-64
tgross35 Jul 29, 2024
186ff6a
Change `f16` doctests in core to run on x86-64
tgross35 Jul 29, 2024
0e6d8b5
Rollup merge of #126985 - Mrmaxmeier:dwarf-embed-source, r=davidtwco
tgross35 Aug 23, 2024
c1af897
Rollup merge of #128349 - tgross35:x86-f16, r=Noratrieb
tgross35 Aug 23, 2024
c6bb6f9
Rollup merge of #128511 - alexcrichton:doc-wasm-features, r=jieyouxu
tgross35 Aug 23, 2024
3c89712
Rollup merge of #129263 - apiraino:add-missing-compat-note, r=cuviper
tgross35 Aug 23, 2024
9f57877
Rollup merge of #129276 - eduardosm:stabilize-char_indices_offset, r=…
tgross35 Aug 23, 2024
c61a77a
Rollup merge of #129350 - krasimirgg:llvm20, r=nikic
tgross35 Aug 23, 2024
4402558
Rollup merge of #129408 - Urgau:macro-arg-drop_copy, r=compiler-errors
tgross35 Aug 23, 2024
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
Update RELEASES.md
Co-authored-by: Jubilee <46493976+workingjubilee@users.noreply.github.com>
  • Loading branch information
apiraino and workingjubilee authored Aug 19, 2024
commit 7613eee55ea9fc0bdaff6bb482cc0650a5bf3e9a
2 changes: 1 addition & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ Compatibility Notes
- [Detect unused structs even when implementing private traits](https://github.com/rust-lang/rust/pull/122382/)
- [`std::sync::ReentrantLockGuard<T>` is no longer `Sync` if `T: !Sync`](https://github.com/rust-lang/rust/pull/125527) which means [`std::io::StdoutLock` and `std::io::StderrLock` are no longer Sync](https://github.com/rust-lang/rust/issues/127340)
- [Type inference will fail in some cases due to a new impl of FromIterator for Box<str>](https://github.com/rust-lang/rust/pull/99969/)
Notably this breaks versions of the `time` crate before 0.3.55, due to no longer inferring the right impl.
Notably this breaks versions of the `time` crate before 0.3.36, due to no longer inferring the right impl.

<a id="1.80-Internal-Changes"></a>

Expand Down
Loading