Skip to content

Commit

Permalink
docs updated for 9.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alefragnani committed Mar 28, 2022
1 parent e6fe485 commit 5e80171
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [9.5.0] - 2022-03-28
### Added
* Web Support (issue [#89](https://github.com/alefragnani/vscode-language-pascal/issues/89))
* Getting Started/Walkthrough (issue [#84](https://github.com/alefragnani/vscode-language-pascal/issues/84))
* Update Keywords (issue [#102](https://github.com/alefragnani/vscode-language-pascal/issues/102))

## [9.4.0] - 2021-12-10
### Internal
* Add CONTRIBUTING documentation (issue [#95](https://github.com/alefragnani/vscode-language-pascal/issues/95))
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@
<a title="Learn more about Pascal" href="https://github.com/alefragnani/vscode-language-pascal"><img src="https://raw.githubusercontent.com/alefragnani/vscode-language-pascal/master/images/vscode-pascal-logo-readme.png" alt="Pascal Logo" width="70%" /></a>
</p>

# What's new in Pascal 9.4
# What's new in Pascal 9.5

* Adds **Web** support
* Adds **Getting Started / Walkthrough**
* Adds **Virtual Workspaces** support
* Adds **Workspace Trust** support
* Adds **Multi-root** support

## Support

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.4.0",
"version": "9.5.0",
"publisher": "alefragnani",
"galleryBanner": {
"color": "#4682B4",
Expand Down
26 changes: 26 additions & 0 deletions src/whats-new/contentProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,32 @@ export class PascalContentProvider implements ContentProvider {
provideChangeLog(): ChangeLogItem[] {
const changeLog: ChangeLogItem[] = [];

changeLog.push({ kind: ChangeLogKind.VERSION, detail: { releaseNumber: "9.5.0", releaseDate: "March 2022" } });
changeLog.push({
kind: ChangeLogKind.NEW,
detail: {
message: "Add Web support",
id: 89,
kind: IssueKind.Issue
}
});
changeLog.push({
kind: ChangeLogKind.NEW,
detail: {
message: "Add Getting Started / Walkthrough",
id: 84,
kind: IssueKind.Issue
}
});
changeLog.push({
kind: ChangeLogKind.NEW,
detail: {
message: "Update keywords",
id: 102,
kind: IssueKind.Issue
}
});

changeLog.push({ kind: ChangeLogKind.VERSION, detail: { releaseNumber: "9.4.0", releaseDate: "November 2021" } });
changeLog.push({
kind: ChangeLogKind.INTERNAL,
Expand Down

0 comments on commit 5e80171

Please sign in to comment.