Skip to content

Commit

Permalink
0.90.0 (#6045)
Browse files Browse the repository at this point in the history
* 0.90.0

* Fix compile error
  • Loading branch information
alexr00 authored Jun 17, 2024
1 parent 4406af5 commit 9d78ca5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
"tokenInformation",
"treeViewMarkdownMessage"
],
"version": "0.88.0",
"version": "0.90.0",
"publisher": "GitHub",
"engines": {
"vscode": "^1.89.0"
"vscode": "^1.90.0"
},
"categories": [
"Other"
Expand Down
3 changes: 3 additions & 0 deletions src/@types/vscode.proposed.fileComments.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ declare module 'vscode' {
* Once disposed, this comment thread will be removed from visible editors and Comment Panel when appropriate.
*/
dispose(): void;

// Part of the comment reveal proposal
reveal(options?: CommentThreadRevealOptions): Thenable<void>;
}

export interface CommentController {
Expand Down
1 change: 1 addition & 0 deletions src/test/view/reviewCommentController.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ describe('ReviewCommentController', function () {
label: 'Start discussion',
state: { resolved: vscode.CommentThreadState.Unresolved, applicability: 0 },
canReply: false,
reveal: () => Promise.resolve(),
dispose: () => { },
};
}
Expand Down

0 comments on commit 9d78ca5

Please sign in to comment.