Skip to content

Commit f9c25a1

Browse files
committed
Changelog #261
1 parent 7cca620 commit f9c25a1

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

generated_assists.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,8 @@ enum Action { Move { distance: u32 }, Stop }
218218

219219
fn handle(action: Action) {
220220
match action {
221-
Action::Move { distance } => todo!(),
222-
Action::Stop => todo!(),
221+
Action::Move { distance } => ${1:todo!()},
222+
Action::Stop => ${2:todo!()},┃
223223
}
224224
}
225225
```
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
= Changelog #261
2+
:sectanchors:
3+
:experimental:
4+
:page-layout: post
5+
6+
Commit: commit:327ab2958fe5d4a54c8e8f1096fd67862786af2e[] +
7+
Release: release:2024-11-25[] (`v0.3.2196`)
8+
9+
== Fixes
10+
11+
* pr:18529[] (first contribution) improve selection handling in `merge_match_arms`.
12+
* pr:18459[] use snippet placeholders for generated match arms.
13+
14+
== Internal Improvements
15+
16+
* pr:18485[] migrate `add_braces` assist to use `SyntaxFactory`.
17+
* pr:18521[] migrate `reorder_impl_items` assist to use `SyntaxFactory`.
18+
* pr:18552[] fix formatting in "missing ``rust-src``" message.

0 commit comments

Comments
 (0)