Skip to content

Commit 9d78ca5

Browse files
authored
0.90.0 (#6045)
* 0.90.0 * Fix compile error
1 parent 4406af5 commit 9d78ca5

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@
3232
"tokenInformation",
3333
"treeViewMarkdownMessage"
3434
],
35-
"version": "0.88.0",
35+
"version": "0.90.0",
3636
"publisher": "GitHub",
3737
"engines": {
38-
"vscode": "^1.89.0"
38+
"vscode": "^1.90.0"
3939
},
4040
"categories": [
4141
"Other"

src/@types/vscode.proposed.fileComments.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@ declare module 'vscode' {
6868
* Once disposed, this comment thread will be removed from visible editors and Comment Panel when appropriate.
6969
*/
7070
dispose(): void;
71+
72+
// Part of the comment reveal proposal
73+
reveal(options?: CommentThreadRevealOptions): Thenable<void>;
7174
}
7275

7376
export interface CommentController {

src/test/view/reviewCommentController.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ describe('ReviewCommentController', function () {
160160
label: 'Start discussion',
161161
state: { resolved: vscode.CommentThreadState.Unresolved, applicability: 0 },
162162
canReply: false,
163+
reveal: () => Promise.resolve(),
163164
dispose: () => { },
164165
};
165166
}

0 commit comments

Comments
 (0)