|
13 | 13 | // It NFC-normalizes to ó, U+00F3 LATIN SMALL LETTER O WITH ACUTE.
|
14 | 14 | trait Foó: Bar {}
|
15 | 15 | ```
|
| 16 | + [unicode normalization form]: https://unicode.org/reports/tr15/ |
16 | 17 | - Ensure a space is added to a range expression, when the right hand side of the range expression is a binary expression that ends with a trailing period [#6059](https://github.com/rust-lang/rustfmt/issues/6059)
|
17 | 18 | ```rust
|
18 | 19 | let range = 3. / 2. ..4.;
|
|
41 | 42 | }
|
42 | 43 | }
|
43 | 44 | ```
|
44 |
| - |
45 |
| -[log crate]: https://crates.io/crates/log |
46 |
| -[unicode normalization form]: https://unicode.org/reports/tr15/ |
| 45 | +- Output correct syntax for type ascription builtin [#6159](https://github.com/rust-lang/rustfmt/issues/6159) |
| 46 | + ```rust |
| 47 | + fn main() { |
| 48 | + builtin # type_ascribe(10, usize) |
| 49 | + } |
| 50 | + ``` |
47 | 51 |
|
48 | 52 |
|
49 | 53 | ### Changed
|
|
52 | 56 | - The diff output produced by `rustfmt --check` is more compatable with editors that support navigating directly to line numbers [#5971](https://github.com/rust-lang/rustfmt/pull/5971)
|
53 | 57 | - When using `version=Two`, the `trace!` macro from the [log crate] is now formatted similarly to `debug!`, `info!`, `warn!`, and `error!` [#5987](https://github.com/rust-lang/rustfmt/issues/5987).
|
54 | 58 |
|
| 59 | + [log crate]: https://crates.io/crates/log |
| 60 | + |
55 | 61 |
|
56 | 62 | ### Added
|
57 | 63 |
|
|
66 | 72 | - Addressed clap deprecations output when running `cargo check --features clap/deprecated` [#6101](https://github.com/rust-lang/rustfmt/pull/6101)
|
67 | 73 | - Bumped bytecount `0.6.4` -> `0.6.8` to fix compilation issues with the `generic-simd` feature. See [bytecount#92] and [bytecount#93]
|
68 | 74 |
|
69 |
| -[bytecount#92]: https://github.com/llogiq/bytecount/pull/92 |
70 |
| -[bytecount#93]: https://github.com/llogiq/bytecount/pull/93 |
71 |
| - |
72 |
| -- Output correct syntax for type ascription builtin [#6159](https://github.com/rust-lang/rustfmt/issues/6159) |
73 |
| - ```rust |
74 |
| - fn main() { |
75 |
| - builtin # type_ascribe(10, usize) |
76 |
| - } |
77 |
| - ``` |
| 75 | + [bytecount#92]: https://github.com/llogiq/bytecount/pull/92 |
| 76 | + [bytecount#93]: https://github.com/llogiq/bytecount/pull/93 |
78 | 77 |
|
79 | 78 | ## [1.7.0] 2023-10-22
|
80 | 79 |
|
|
0 commit comments