Skip to content

Commit bf0da3e

Browse files
committed
fix(vscode): update stale RF version UI strings from 4.1 to 5.0
The quick-pick dialog shown when environment validation fails still referenced 'robotframework version 4.1 or higher' in both the 'Select Python Interpreter' detail and the 'Retry' detail text. The actual enforced minimum has been 5.0 since commit 02cf495 (refactor: introduce RF_VERSION constant and remove RF < 5.0 dead code). Closes #603
1 parent 8ae4aec commit bf0da3e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

vscode-client/extension/languageclientsmanger.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ export class LanguageClientsManager {
366366
id: "select",
367367
label: "Select Python Interpreter...",
368368
detail:
369-
"Choose a Python interpreter version 3.10 or newer that has `robotframework` version 4.1 or higher installed",
369+
"Choose a Python interpreter version 3.10 or newer that has `robotframework` version 5.0 or higher installed",
370370
},
371371
{
372372
id: "create",
@@ -379,7 +379,7 @@ export class LanguageClientsManager {
379379
id: "retry",
380380
label: "Retry",
381381
detail:
382-
"Install `robotframework` version 4.1 or higher manually in the current environment, then restart the language server",
382+
"Install `robotframework` version 5.0 or higher manually in the current environment, then restart the language server",
383383
},
384384
]
385385
: []),

0 commit comments

Comments
 (0)