about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYacin Tmimi <yacintmimi@gmail.com>2023-10-22 19:55:29 -0400
committerCaleb Cartwright <calebcartwright@users.noreply.github.com>2023-10-22 20:18:45 -0500
commit75c7d1daff782b015776dcaf3b6b063830c06e73 (patch)
tree0450370678a236a6ed4d20f181b71e4339cef007
parent0bb2acf50fad389285d22b2706d592b9668e65d5 (diff)
downloadrust-75c7d1daff782b015776dcaf3b6b063830c06e73.tar.gz
rust-75c7d1daff782b015776dcaf3b6b063830c06e73.zip
Add outstanding changelog entries for the next release
-rw-r--r--CHANGELOG.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a590a055bd5..84ff0e73e68 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -57,6 +57,7 @@
   ```
 - Improve formatting of `let-else` statements that have leading attributes When setting `version = Two` [#5901](https://github.com/rust-lang/rustfmt/issues/5901)
 - Prevent comment duplication in expressions wrapped in parenthesis. [#5871](https://github.com/rust-lang/rustfmt/issues/5871)
+- Adjust the span derivation used when rewriting const generics. The incorrect span derivation lead to invalid code after reformatting. [#5935](https://github.com/rust-lang/rustfmt/issues/5935)
 
 
 ### Changed
@@ -68,6 +69,7 @@
 ### Added
 
 - Users can now set `skip_macro_invocations` in `rustfmt.toml` [#5816](https://github.com/rust-lang/rustfmt/issues/5816)
+- Adds initial support for formatting `let-chains`. **`let-chains` are still a nightly feature and their formatting is subject to change** [#5910](https://github.com/rust-lang/rustfmt/pull/5910). Formatting was implemented following the rules outlined in [rust-lang/rust#110568](https://github.com/rust-lang/rust/pull/110568)
 
 ### Misc