Skip to content

Commit 2a8fbb5

Browse files
committed
Re-add missing empty lines in the releases notes
1 parent 4229b80 commit 2a8fbb5

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

RELEASES.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ Libraries
3434
---------
3535
- [Panics in the standard library now have a leading `library/` in their path](https://github.com/rust-lang/rust/pull/132390)
3636
- [`std::env::home_dir()` on Windows now ignores the non-standard `$HOME` environment variable](https://github.com/rust-lang/rust/pull/132515)
37-
It will be un-deprecated in a subsequent release.
37+
38+
It will be un-deprecated in a subsequent release.
3839
- [Add `AsyncFn*` to the prelude in all editions.](https://github.com/rust-lang/rust/pull/132611)
3940

4041
<a id="1.85.0-Stabilized-APIs"></a>
@@ -98,15 +99,18 @@ Rustdoc
9899
Compatibility Notes
99100
-------------------
100101
- [`rustc` no longer treats the `test` cfg as a well known check-cfg](https://github.com/rust-lang/rust/pull/131729), instead it is up to the build systems and users of `--check-cfg`[^check-cfg] to set it as a well known cfg using `--check-cfg=cfg(test)`.
102+
101103
This is done to enable build systems like Cargo to set it conditionally, as not all source files are suitable for unit tests.
102104
[Cargo (for now) unconditionally sets the `test` cfg as a well known cfg](https://github.com/rust-lang/cargo/pull/14963).
103-
[^check-cfg]: https://doc.rust-lang.org/nightly/rustc/check-cfg.html
105+
[^check-cfg]: https://doc.rust-lang.org/nightly/rustc/check-cfg.html
104106
- [Disable potentially incorrect type inference if there are trivial and non-trivial where-clauses](https://github.com/rust-lang/rust/pull/132325)
105107
- `std::env::home_dir()` has been deprecated for years, because it can give surprising results in some Windows configurations if the `HOME` environment variable is set (which is not the normal configuration on Windows). We had previously avoided changing its behavior, out of concern for compatibility with code depending on this non-standard configuration. Given how long this function has been deprecated, we're now fixing its behavior as a bugfix. A subsequent release will remove the deprecation for this function.
106108
- [Make `core::ffi::c_char` signedness more closely match that of the platform-default `char`](https://github.com/rust-lang/rust/pull/132975)
109+
107110
This changed `c_char` from an `i8` to `u8` or vice versa on many Tier 2 and 3
108111
targets (mostly Arm and RISC-V embedded targets). The new definition may
109112
result in compilation failures but fixes compatibility issues with C.
113+
110114
The `libc` crate matches this change as of its 0.2.169 release.
111115
- [When compiling a nested `macro_rules` macro from an external crate, the content of the inner `macro_rules` is now built with the edition of the external crate, not the local crate.](https://github.com/rust-lang/rust/pull/133274)
112116
- [Increase `sparcv9-sun-solaris` and `x86_64-pc-solaris` Solaris baseline to 11.4.](https://github.com/rust-lang/rust/pull/133293)

0 commit comments

Comments
 (0)