Skip to content

Commit

Permalink
docs updated for 9.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
alefragnani committed Jul 17, 2022
1 parent dad3322 commit 87dc84b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 21 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [9.5.1] - 2022-07-17
### Internal
* Add GitHub Sponsors support (PR [#108](https://github.com/alefragnani/vscode-language-pascal/pull/108))

## [9.5.0] - 2022-03-28
### Added
* Web Support (issue [#89](https://github.com/alefragnani/vscode-language-pascal/issues/89))
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "pascal",
"displayName": "Pascal",
"description": "Pascal language support for Visual Studio Code",
"version": "9.5.0",
"version": "9.5.1",
"publisher": "alefragnani",
"galleryBanner": {
"color": "#4682B4",
Expand Down
24 changes: 6 additions & 18 deletions src/whats-new/contentProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ export class PascalContentProvider implements ContentProvider {
provideChangeLog(): ChangeLogItem[] {
const changeLog: ChangeLogItem[] = [];

changeLog.push({ kind: ChangeLogKind.VERSION, detail: { releaseNumber: "9.5.1", releaseDate: "June 2022" } });
changeLog.push({
kind: ChangeLogKind.INTERNAL,
detail: "Add <b>GitHub Sponsors</b> support"
});

changeLog.push({ kind: ChangeLogKind.VERSION, detail: { releaseNumber: "9.5.0", releaseDate: "March 2022" } });
changeLog.push({
kind: ChangeLogKind.NEW,
Expand Down Expand Up @@ -88,24 +94,6 @@ export class PascalContentProvider implements ContentProvider {
}
});

changeLog.push({ kind: ChangeLogKind.VERSION, detail: { releaseNumber: "9.2.0", releaseDate: "October 2020" } });
changeLog.push({
kind: ChangeLogKind.INTERNAL,
detail: {
message: "Reopen providers repo",
id: 67,
kind: IssueKind.Issue
}
});
changeLog.push({
kind: ChangeLogKind.FIXED,
detail: {
message: "<b>Find References</b> command not working",
id: 68,
kind: IssueKind.Issue
}
});

return changeLog;
}

Expand Down

0 comments on commit 87dc84b

Please sign in to comment.