Skip to content

Commit 63d41d6

Browse files
committed
Add "(Next)" suffix to extension name
1 parent 83adb22 commit 63d41d6

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.claude/agents/vscode-translation-manager.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The package.nls.json file structure:
4747

4848
```json
4949
{
50-
"extension.displayName": "Prettier - Code formatter",
50+
"extension.displayName": "Prettier - Code formatter (Next)",
5151
"extension.description": "Code formatter using prettier",
5252
"config.enable": "Enable/disable Prettier"
5353
}

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ All notable changes to the "prettier-vscode" extension will be documented in thi
1616
- Added support for TypeScript config files (`.prettierrc.ts`, `.prettierrc.cts`, `.prettierrc.mts`, `prettier.config.ts`, etc.) introduced in Prettier 3.5.0 - Thanks to [@dr2009](https://github.com/dr2009)
1717
- Added `source.fixAll.prettier` code action for use with `editor.codeActionsOnSave` to run Prettier before other formatters like ESLint (#1277)
1818
- Fixed issue where unnecessary TextEdits were applied when document was already formatted, which could cause spurious changes or cursor positioning issues (#3232)
19+
- Added the suffix " (Next)" to the extension name to indicate Prettier v3 support
1920

2021
## [11.0.0]
2122

docs/troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This guide covers common issues with the Prettier VS Code extension and how to r
2121
2. Open Command Palette (`Cmd/Ctrl + Shift + P`)
2222
3. Run "Format Document With..."
2323
4. Select "Configure Default Formatter..."
24-
5. Choose "Prettier - Code formatter"
24+
5. Choose "Prettier - Code formatter (Next)"
2525

2626
Or add to your `settings.json`:
2727

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "prettier-vscode",
3-
"displayName": "Prettier - Code formatter",
3+
"displayName": "Prettier - Code formatter (Next)",
44
"description": "Code formatter using prettier",
55
"version": "12.0.7",
66
"publisher": "prettier",

0 commit comments

Comments
 (0)