Skip to content

Commit 8cb66c8

Browse files
authored
Remove proposed tag references from documentation (#1818)
Remove proposed comment
1 parent 0da5527 commit 8cb66c8

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

protocol/metaModel.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12862,8 +12862,8 @@
1286212862
"name": "CodeActionTagOptions"
1286312863
},
1286412864
"optional": true,
12865-
"documentation": "Client supports the tag property on a code action. Clients\nsupporting tags have to handle unknown tags gracefully.\n\n@since 3.18.0 - proposed",
12866-
"since": "3.18.0 - proposed"
12865+
"documentation": "Client supports the tag property on a code action. Clients\nsupporting tags have to handle unknown tags gracefully.\n\n@since 3.18.0",
12866+
"since": "3.18.0"
1286712867
}
1286812868
],
1286912869
"documentation": "The Client Capabilities of a {@link CodeActionRequest}."
@@ -13839,8 +13839,8 @@
1383913839
"documentation": "The tags supported by the client."
1384013840
}
1384113841
],
13842-
"documentation": "@since 3.18.0 - proposed",
13843-
"since": "3.18.0 - proposed"
13842+
"documentation": "@since 3.18.0",
13843+
"since": "3.18.0"
1384413844
},
1384513845
{
1384613846
"name": "ClientCodeLensResolveOptions",

protocol/src/common/protocol.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3357,13 +3357,13 @@ export interface CodeActionClientCapabilities {
33573357
* Client supports the tag property on a code action. Clients
33583358
* supporting tags have to handle unknown tags gracefully.
33593359
*
3360-
* @since 3.18.0 - proposed
3360+
* @since 3.18.0
33613361
*/
33623362
tagSupport?: CodeActionTagOptions;
33633363
}
33643364

33653365
/**
3366-
* @since 3.18.0 - proposed
3366+
* @since 3.18.0
33673367
*/
33683368
export type CodeActionTagOptions = {
33693369
/**

types/src/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3524,7 +3524,7 @@ export type CodeActionDisabled = {
35243524
/**
35253525
* Code action tags are extra annotations that tweak the behavior of a code action.
35263526
*
3527-
* @since 3.18.0 - proposed
3527+
* @since 3.18.0
35283528
*/
35293529
export namespace CodeActionTag {
35303530
/**
@@ -3619,7 +3619,7 @@ export interface CodeAction {
36193619
/**
36203620
* Tags for this code action.
36213621
*
3622-
* @since 3.18.0 - proposed
3622+
* @since 3.18.0
36233623
*/
36243624
tags?: CodeActionTag[];
36253625
}

0 commit comments

Comments
 (0)